airsonic-refix/docker/nginx.conf
2020-08-08 12:35:25 +02:00

21 lines
298 B
Nginx Configuration File

gzip on;
gzip_proxied any;
gzip_vary on;
gzip_buffers 16 8k;
gzip_types *;
server {
listen 80;
server_name localhost;
root /var/www/html;
location / {
root /var/www/html;
try_files $uri /index.html;
}
location = /index.html {
add_header 'Cache-Control' 'no-cache';
}
}