-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
docker: Enable IPv6 support in nginx #3497
Conversation
I believe if this gets merged IPv4 support will be disabled the line should read the following instead: llisten [::]:5000 ipv6only=off; same for rtmp |
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.
testes change to the following to allow v4 and v6
llisten [::]:5000 ipv6only=off;
llisten [::]:1935 ipv6only=off;
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
✅ Deploy Preview for frigate-docs ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
Ah, I must have tested with an older nginx that would just respect the OS default of binding IPv4 when binding an IPv6 wildcard address. |
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.
Tested and confirmed working
Any chance we can get this merged? |
implemented in #10653 (comment) |
Signed-off-by: Stéphane Graber stgraber@ubuntu.com