-
Notifications
You must be signed in to change notification settings - Fork 4
chore: Listen on IPv6 by default #650
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,9 @@ processes = [] | |
|
||
[env] | ||
PORT = "8080" | ||
HOST = "0.0.0.0" | ||
# Listen on IPv6 by default | ||
# https://fly.io/docs/networking/private-networking/#listening-for-connections-on-6pn-addresses | ||
HOST = "::" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Based on my understanding, this will break public access to this service via See https://fly.io/docs/networking/app-services/#tl-dr ![]() https://fly.io/docs/networking/app-services/#a-note-on-ipv4-and-ipv6-wildcards
Have you considered using Flycast private proxy instead of private networking? That would allow us to keep listening on IPv4. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Alternatively, can we listen on both There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've taken a better look at the flycast and I think that would probably be a better solution. With flycast migration could be easier as we could setup the whole infrastructure to communicate over the private flycast address and once we're ready to migrate we can release our public IPs. 👍🏻 |
||
SENTRY_ENVIRONMENT = "production" | ||
DOMAIN = "api.filspark.com" | ||
REQUEST_LOGGING = "false" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we listen on
fly-local-6pn
?