1
0
forked from crony/UpFast
UpFast/upfast-nginx

16 lines
365 B
Plaintext
Raw Normal View History

2023-04-04 18:52:14 +02:00
server {
listen 80;
listen [::]:80;
server_name upfast.example.com ;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
proxy_buffering off;
}
}