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

16 lines
323 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
2017-06-14 00:40:34 -07:00
location /download {
proxy_pass http://ytdl:5002;
}
2017-01-20 19:22:02 -08:00
location / {
proxy_pass http://app:5001;
2017-08-25 16:41:58 -07:00
proxy_buffers 8 16k;
proxy_buffer_size 16k;
2017-01-20 19:22:02 -08:00
}
}