1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
mxpv-podsync/src/nginx/nginx.conf

17 lines
541 B
Nginx Configuration File
Raw Normal View History

2017-01-20 19:22:02 -08:00
server {
listen 80;
gzip on;
2017-01-21 11:23:18 -08:00
server_tokens off;
2017-01-20 19:22:02 -08:00
location / {
proxy_pass http://app:5001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2017-01-20 19:22:02 -08:00
proxy_cache_bypass $http_upgrade;
}
}