18 lines
361 B
Nginx Configuration File
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;
|
|
}
|