tv / nginx.conf
PXHero's picture
Update nginx.conf
53e11f3 verified
Raw
History Blame Contribute Delete
730 Bytes
server {
listen 7860;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location /files/ {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
types {
text/plain txt;
application/vnd.apple.mpegurl m3u;
}
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
add_header Access-Control-Allow-Headers 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
}