nginx.org IPv6 Server 2001:1af8:4060:a004:21::e3 returning empty response

2017-01-23 Thread Ryan A. Krenzischek
Sirs: I'm not sure who is responsible for the web server on 2001:1af8:4060:a004:21::e3 but it's not serving up HTTP properly for nginx.org over IPv6. The server on 2606:7100:1:69::3f is working just fine but for some reason Chrome is preferring the 2001:1af8:4060:a004:21::e3 address first.

Re: ssl_protocols & SNI

2017-01-23 Thread B.R. via nginx
Any help? --- *B. R.* On Thu, Jan 19, 2017 at 7:07 PM, B.R. wrote: > There is something strange, though. > > I configured cipher suites with ssl_ciphers with suites from TLSv1.0 & > TLSv1.2 (TLSv1.1 having no specific cipher suites but merely relying on > thos from TLSv1.0). > Those 3 protocols

Re: Beginner question:Nginx request_uri meaning ?

2017-01-23 Thread tokers
$request_uri is a built-in variable of Nginx, which meaning is the pure uri in HTTP request line without any process. For instance, if the HTTP request line is "GET /path/to//a.jpg HTTP/1.1", the $request_uri is "/path/to//a.jpg". But the $uri will be "/path/to/a.jpg" if merge_slashes is enable.