dvb/nginx.conf

14 lines
197 B
Nginx Configuration File
Raw Normal View History

2018-07-26 11:42:38 +02:00
server{
listen 80;
server_name _;
location / {
root /srv;
# Activate the next line if you want to list files
# autoindex on;
}
location /cache/ {
proxy_pass http://cache:8000/;
}
}