summaryrefslogtreecommitdiffstats
path: root/deploy/nginx.conf.example
blob: 046e1659a59c6e071e8fa853e318d7146d8f94ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
server {
    listen 443 ssl http2;
    server_name n2usenet.virebent.art;

    location / {
        proxy_pass http://127.0.0.1:8095;
        proxy_http_version 1.1;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Proto https;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}