Re: Nginx not spawning both ipv4 and ipv6 workers

2016-07-26 Thread geuis
Last update to this I think. I found the source of the issue and filed a bug about it https://trac.nginx.org/nginx/ticket/1033#ticket. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,268460,268527#msg-268527 ___ nginx mailing list nginx@nginx

Re: Nginx not spawning both ipv4 and ipv6 workers

2016-07-26 Thread geuis
Last update to this I think. I found the source of the issue and filed a bug about it https://trac.nginx.org/nginx/ticket/1033#ticket. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,268460,268526#msg-268526 ___ nginx mailing list nginx@nginx

Re: Nginx not spawning both ipv4 and ipv6 workers

2016-07-26 Thread geuis
This is Charles, moving over to the forum interface rather than email. I realized I didn't include the server directive in my initial email, sorry about that. I'll include the entire set of configuration below. I feel like I've been through all the configurations that I've seen during research an

Re: Nginx not spawning both ipv4 and ipv6 workers

2016-07-26 Thread geuis
I've added some more information here. Same problem persists. https://forum.nginx.org/read.php?2,268460,268519#msg-268519 Posted at Nginx Forum: https://forum.nginx.org/read.php?2,268460,268520#msg-268520 ___ nginx mailing list nginx@nginx.org http://m

Re: Nginx not spawning both ipv4 and ipv6 workers

2016-07-26 Thread geuis
So I was finally able to resolve this, but not in any way I've seen described anywhere else. I set "net.ipv6.bindv6only = 1" in /etc/sysctl.conf and reloaded via "sudo sysctl -p". Then with the configuration "listen 80; listen [::]:80;" I now get my workers split evenly between ipv4 and ipv6 and n

Re: Nginx not spawning both ipv4 and ipv6 workers

2016-07-26 Thread Maxim Dounin
Hello! On Mon, Jul 25, 2016 at 05:24:46PM -0700, Charles Lawrence wrote: > I'm in the process of setting up a new server built on ubuntu 16.04 > using nginx 1.10.0. > > The specific issue is that while my new configuration essentially > matches my old nginx configuration from an ubuntu 13.10 ser

Re: Nginx not spawning both ipv4 and ipv6 workers

2016-07-26 Thread Daniel Mostertman
Hi Charles, IPv6 listeners can also accept IPv4 requests. This will result in IPs being passed through to logs and such like :::192.168.123.101. If you do not want this and do want both, add ipv6only=on to the IPv6 listen line. Daniƫl On Jul 26, 2016 02:25, "Charles Lawrence" wrote: > I'm

Nginx not spawning both ipv4 and ipv6 workers

2016-07-25 Thread Charles Lawrence
I'm in the process of setting up a new server built on ubuntu 16.04 using nginx 1.10.0. The specific issue is that while my new configuration essentially matches my old nginx configuration from an ubuntu 13.10 server using nginx 1.4.4, nginx 1.10.0 is only creating either ipv4 or ipv6 workers, but