Merge pull request #78 from dschaper/nginx

Add nginx config file for webmap
This commit is contained in:
Oliver Jowett 2015-10-26 13:19:51 +00:00
commit ecc45517d6
2 changed files with 20 additions and 0 deletions

View file

@ -1,5 +1,6 @@
public_html/* usr/share/dump1090-mutability/html
debian/lighttpd/* etc/lighttpd/conf-available
debian/nginx/* etc/nginx/sites-available
debian/config-template usr/share/dump1090-mutability
debian/cron-template usr/share/dump1090-mutability
tools/vrs-basicaircraft-to-json.py usr/share/dump1090-mutability

19
debian/nginx/dump1090-mutability vendored Normal file
View 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/;
}
}