2014-12-06 22:47:46 +01:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
alias.url += (
|
2016-01-13 01:00:08 +01:00
|
|
|
"/dump1090-fa/data/" => "/run/dump1090-fa/",
|
|
|
|
"/dump1090-fa/" => "/usr/share/dump1090-fa/html/"
|
2014-12-06 22:47:46 +01:00
|
|
|
)
|
2015-01-07 20:01:56 +01:00
|
|
|
|
2015-02-25 14:16:54 +01:00
|
|
|
# The stat cache must be disabled, as aircraft.json changes
|
|
|
|
# frequently and lighttpd's stat cache often ends up with the
|
2015-01-07 20:01:56 +01:00
|
|
|
# wrong content length.
|
|
|
|
server.stat-cache-engine = "disable"
|
2016-04-11 12:58:51 +02:00
|
|
|
|
|
|
|
# Listen on port 8080 and emit 301s pointing to port 80
|
|
|
|
# to support the old convention of the map being on 8080
|
|
|
|
$SERVER["socket"] == ":8080" {
|
|
|
|
$HTTP["host"] =~ "^(.*):8080" {
|
|
|
|
url.redirect = ("^/(.*)" => "http://%1/dump1090-fa/$1")
|
|
|
|
}
|
|
|
|
}
|