20 lines
618 B
Plaintext
20 lines
618 B
Plaintext
# Allows access to the static files that provide the dump1090 map view,
|
|
# and also to the dynamically-generated json parts that contain aircraft
|
|
# data and are periodically written by the dump1090 daemon.
|
|
#
|
|
server{
|
|
rewrite ^/dump1090/$ /dump1090/gmap.html permanent;
|
|
rewrite ^/dump1090$ /dump1090/gmap.html permanent;
|
|
|
|
location /dump1090/ {
|
|
alias /usr/share/dump1090-mutability/html/;
|
|
}
|
|
location /dump1090/data/ {
|
|
alias /run/dump1090-mutability/;
|
|
}
|
|
location /dump1090/db/ {
|
|
alias /var/cache/dump1090-mutability/db/;
|
|
}
|
|
}
|
|
|