Re: IPv6 does not work correctly with nginx

2018-01-05 Thread Mik J via nginx
Hello Francis, The port seems open but there is no ssl transaction.When I did a simple tcpdump capture I saw syn then syn/ack, then ackThe brower displays an error that the site is not accessible. I forgot to say that I d-natted my IPv6 and the one I displayed is not a public IP.I was wondering

Re: 504 gateway timeouts

2018-01-05 Thread Wade Girard
Hi Peter, Thank You. In my servlet I am making https requests to third party vendors to get data from them. The requests typically take 4~5 seconds, but every now any then one of the requests will take more than 60 seconds. So the connection from the client to nginx to tomcat will remain open, an

Re: IPv6 does not work correctly with nginx

2018-01-05 Thread Francis Daly
On Fri, Jan 05, 2018 at 01:04:52AM +, Mik J via nginx wrote: Hi there, > I'm trying to finish to configure nginx for ipv6 > listen [::]:443 ssl;doesn't workbutlisten [fc00:1:1::13]:443 ssl;works "listen [::]:443 ssl;" seems to work for me. What does "doesn't work" mean to you, specifically?

URI Substitue _ with - and + with space

2018-01-05 Thread Thomas Glanzmann
Hello, I would like to substitue '_' with '-' and '+' with ' ' in the $URI and pass it to upstream server that can't handle _ and + in the URI (IIS). Based on [1] I found a working solution, however I would like to know if there is a more efficient way to do the same for example using lua? locati