aboutsummaryrefslogtreecommitdiff
path: root/deploy/nginx
blob: ac25e85fe5d1123fe3905f206916c9435854bd7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
    server_name   timeline.crupest.life;
    listen        80;

    location / {
        proxy_pass http://localhost:5000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $http_connection;
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}