You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes with nginx 1.3.4 31 Jul 2012
*) Change: the "ipv6only" parameter is now turned on by default for
listening IPv6 sockets.
Do you want to pass ipv4 traffic over ipv6? Don't mind if it will be good for all.
server {
listen8080; # all interfaces bind (ipv4/ipv6 (--with-ipv6))listen 0.0.0.0:8080; # all interfaces ipv4 bindlisten [::]:8080; # all interfaces ipv6 bindlisten8080 ipv6only=off; # all interfaces bind (ipv4/ipv6 (--with-ipv6)),# disabled filtering receiving from the client ipv4 over ipv6
}
I was thinking of changing that line to allow it to be both ipv4 and ipv6, yes.
I use port 80 but understand making it port 8080 it just doesnt work for trying to do localhost:8080 with the current setup.
I would be fine with passing ipv4 over ipv6 or just putting in a caveat that lets people decide on their own how they want to do it, as long as we can give enough information.
I was wondering what people thought of changing from just port 80 to 8080 to actually be [::]:8080 or adding ipv6only=off
I ran into this issue and so have others #113.
the reason:
http://serverfault.com/questions/638367/do-you-need-separate-ipv4-and-ipv6-listen-directives-in-nginx/638370#638370
or maybe a caveat when trying to use localhost as it seems to not work...
The text was updated successfully, but these errors were encountered: