Files
tar1090/nginx.conf
Matthias Wirth 5b06ff0906 nginx stuff
2019-10-15 17:32:05 +02:00

18 lines
361 B
Nginx Configuration File

location /INSTANCE/data/ {
alias SOURCE_DIR/;
}
location /INSTANCE/chunks/ {
alias /run/INSTANCE/;
location ~* \.gz$ {
add_header Cache-Control "must-revalidate";
add_header Content-Type "application/json";
add_header Content-Encoding "gzip";
}
}
location /INSTANCE {
alias /usr/local/share/tar1090/html/;
try_files $uri $uri/ =404;
}