Same issue appears in every browser across multiple computers (with slight changes to the wheel and progress bar), crtl+F5 has no effect,
pi@piaware:~ $ sudo journalctl -u lighttpd -n50 --no-pager
-- Logs begin at Thu 2019-01-03 19:54:11 UTC, end at Fri 2019-01-04 15:14:20 UTC. --
Jan 03 19:54:26 piaware systemd[1]: Starting Lighttpd Daemon...
Jan 03 19:54:27 piaware lighttpd[739]: Syntax OK
Jan 03 19:54:27 piaware systemd[1]: Started Lighttpd Daemon.
Jan 04 14:10:20 piaware systemd[1]: Stopping Lighttpd Daemon...
Jan 04 14:10:20 piaware systemd[1]: Starting Lighttpd Daemon...
Jan 04 14:10:20 piaware lighttpd[26022]: Syntax OK
Jan 04 14:10:20 piaware systemd[1]: Started Lighttpd Daemon.
Jan 04 14:15:56 piaware systemd[1]: Stopping Lighttpd Daemon...
Jan 04 14:15:56 piaware systemd[1]: Starting Lighttpd Daemon...
Jan 04 14:15:56 piaware lighttpd[26377]: Syntax OK
Jan 04 14:15:56 piaware systemd[1]: Started Lighttpd Daemon.
pi@piaware:~ $ cat /etc/lighttpd/conf-enabled/89-dump1090-fa.conf
# 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 += (
"/dump1090-fa/data/" => "/run/dump1090-fa/",
"/dump1090-fa/" => "/usr/share/dump1090-fa/html/"
)
# redirect the slash-less URL
url.redirect += (
"^/dump1090-fa$" => "/dump1090-fa/"
)
# Listen on port 8080 and serve the map there, too.
# $SERVER["socket"] == ":18080" {
$SERVER["socket"] == ":80" {
alias.url += (
"/data/" => "/run/dump1090-fa/",
"/" => "/usr/share/dump1090-fa/html/"
)
}
# Add CORS header
server.modules += ( "mod_setenv" )
$HTTP["url"] =~ "^/dump1090-fa/data/.*\.json$" {
setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" )
}
I’m quite sure that this used to work, but it’s been a while since I looked at the local web interface…
just in case this is required
pi@piaware:~ $ cat /etc/lighttpd/lighttpd.conf
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
# "mod_rewrite",
)
server.document-root = "/var/www/html"
server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
server.errorlog = "/var/log/lighttpd/error.log"
server.pid-file = "/var/run/lighttpd.pid"
server.username = "www-data"
server.groupname = "www-data"
server.port = 80
index-file.names = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"