mirror of
https://github.com/cupcakearmy/dvb.git
synced 2024-11-05 09:14:09 +01:00
14 lines
197 B
Nginx Configuration File
14 lines
197 B
Nginx Configuration File
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/;
|
|
}
|
|
} |