Re: Nginx proxy_pass HTTPS/SSL/HTTP2 keepalive

2017-02-25 Thread Maxim Dounin
Hello! On Fri, Feb 24, 2017 at 05:07:22AM -0500, c0nw0nk wrote: > So the Nginx documentation says this > http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive > > For HTTP, the proxy_http_version directive should be set to “1.1” and the > “Connection” header field should be clear

Re: Nginx proxy_pass HTTPS/SSL/HTTP2 keepalive

2017-02-24 Thread c0nw0nk
I think from my understanding the proxy_http_version 1.1; is ignored over https since everything works and that directive does what it states proxy_HTTP_version for unsecured requests only it will be version 1.1 so i don't think it has any negative impact on HTTP2/SSL. Posted at Nginx Forum: http

Nginx proxy_pass HTTPS/SSL/HTTP2 keepalive

2017-02-24 Thread c0nw0nk
So the Nginx documentation says this http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive For HTTP, the proxy_http_version directive should be set to “1.1” and the “Connection” header field should be cleared: upstream http_backend { server 127.0.0.1:8080; kee