airsonic-refix/docker/nginx.conf
2020-09-19 13:07:59 +02:00

25 lines
369 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';
}
location = /env.js {
add_header 'Cache-Control' 'no-cache';
}
}