aboutsummaryrefslogtreecommitdiff
path: root/services/templates/disabled/nginx/timeline.conf.template
blob: 086c1f7495be43615110384fbb243997abf5c719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    server_name timeline.@@CRUPEST_DOMAIN@@;

    location / {
        include conf.d/common/reverse-proxy;
        proxy_pass http://timeline:5000/;
    }

    client_max_body_size 5G;
}

server {
    listen 80;
    listen [::]:80;
    server_name timeline.@@CRUPEST_DOMAIN@@;

    include conf.d/common/https-redirect;
    include conf.d/common/acme-challenge;
}