Increase the priority of the lighttpd config file to work around an

odd ordering problem with the default debian-doc configuration which
would mangle the alias list when accessing from localhost.
This commit is contained in:
Oliver Jowett 2014-12-06 22:19:24 +00:00
parent aa4aadbccc
commit 796ca80db8

13
debian/lighttpd/89-dump1090.conf vendored Normal file
View file

@ -0,0 +1,13 @@
# 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.
url.redirect += (
"^/dump1090/$" => "/dump1090/gmap.html",
"^/dump1090$" => "/dump1090/gmap.html"
)
alias.url += (
"/dump1090/data/" => "/run/dump1090-mutability/",
"/dump1090/" => "/usr/share/dump1090-mutability/"
)