Re: Weird problem cannot standup nginx on 443 ipv4

2019-04-26 Thread Julian Brown
I guess that is an unfortunate accident in this case. But man it was frustrating, I even had some co workers who are nginx experts and they missed it to. It is certainly embarrassing. Thanx for your reply. Julian On Fri, Apr 26, 2019 at 10:11 AM Francis Daly wrote: > On Thu, Apr 25, 2019 at

Re: Weird problem cannot standup nginx on 443 ipv4

2019-04-26 Thread Francis Daly
On Thu, Apr 25, 2019 at 08:08:47PM -0500, Julian Brown wrote: Hi there, Well done in spotting that -- it has come up before, but obviously wasn't something that someone noticed quickly enough this time. > I finally figured it out, and I cannot believe it passed a syntax checker. It passed a syn

Re: Weird problem cannot standup nginx on 443 ipv4

2019-04-25 Thread Julian Brown
I finally figured it out, and I cannot believe it passed a syntax checker. This is what I had: server { server_name learngigs.com www.learngigs.com listen 443; listen [::]:443; I did not have a semi colon after the server name directive. The syntax checker said it was fine, so I d

Re: Weird problem cannot standup nginx on 443 ipv4

2019-04-25 Thread OiledAmoeba
25. April 2019 21:27, "Julian Brown" schrieb: > listen 443; > listen [::]:443; I'm lazy, so I used "listen [::]:443 ssl http2 ipv6only=off" instead of two listen-directives. Maybe you want to try this, so nginx must use IPv4 and IPv6 because of the ipv6only=off directive. If I try learngigs.com

Re: Weird problem cannot standup nginx on 443 ipv4

2019-04-25 Thread Julian Brown
I just tried both, (removed the ipv6 entry) and tried both of the above. Now nothing is on 443, not even ipv6 (which is ok). This is totally wierd. Thank you Julian On Thu, Apr 25, 2019 at 2:37 PM Rainer Duffner wrote: > > > Am 25.04.2019 um 21:27 schrieb Julian Brown : > > listen 443; >

Re: Weird problem cannot standup nginx on 443 ipv4

2019-04-25 Thread Rainer Duffner
> Am 25.04.2019 um 21:27 schrieb Julian Brown : > > listen 443; > listen [::]:443; You most certainly want listen 443 ssl or listen 443 ssl http2 Not sure if it solves your problem. ___ nginx mailing list nginx@nginx.org http://mailma

Weird problem cannot standup nginx on 443 ipv4

2019-04-25 Thread Julian Brown
Sorry this is a bit long: On Debian Stretch 9.8, fresh install. I want to setup nginx as a load balancer to just one node at this time just to play with it and understand it. I installed the apt package nginx-full, which I assume will have all there. So I slightly modified nginx.conf, where I