Add nginx config file
This commit is contained in:
parent
c55c71b57c
commit
a6cb388eef
19
debian/nginx/dump1090-mutability
vendored
Normal file
19
debian/nginx/dump1090-mutability
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
# 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/;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue