We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The configuration in 89-skyaware.conf has lighttpd listen on port 8080 with IPv4 only. That doesn't work on IPv6-enabled networks like mine.
I was able to resolve this by manually adding a line that enables IPv6 in addition to IPv4:
# Listen on port 8080 and serve the map there, too. $SERVER["socket"] == ":8080" { server.use-ipv6 = "enable" # <---- this fixed it alias.url += ( "/data/" => "/run/dump1090-fa/", "/data-978/" => "/run/skyaware978/", "/" => "/usr/share/skyaware/html/" ) }
I saw that PR #29 also fixes this, but by adding a whole new section to the config. I don't know enough about lighttpd to suggest which is better.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The configuration in 89-skyaware.conf has lighttpd listen on port 8080 with IPv4 only. That doesn't work on IPv6-enabled networks like mine.
I was able to resolve this by manually adding a line that enables IPv6 in addition to IPv4:
I saw that PR #29 also fixes this, but by adding a whole new section to the config. I don't know enough about lighttpd to suggest which is better.
The text was updated successfully, but these errors were encountered: