Skip to content
New issue

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

only supports legacy IP #126

Open
mhrivnak opened this issue Apr 3, 2021 · 0 comments
Open

only supports legacy IP #126

mhrivnak opened this issue Apr 3, 2021 · 0 comments

Comments

@mhrivnak
Copy link

mhrivnak commented Apr 3, 2021

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant