Re: SPDY: nginx/1.6.2: proxy_pass does not work when https is used

2014-12-16 Thread Valentin V. Bartenev
On Tuesday 16 December 2014 11:48:37 Yury Kirpichev wrote: > worker_processes 12; > > events { > worker_connections 8192; > use epoll; > } > > http { > server { > listen [::]:6121 spdy; > listen [::]:80; > > client_body_buffer_size 100k; > client_max

Re: SPDY: nginx/1.6.2: proxy_pass does not work when https is used

2014-12-16 Thread Yury Kirpichev
Hi, Here is full config, I tried to make it as small as possible. worker_processes 12; events { worker_connections 8192; use epoll; } http { server { listen [::]:6121 spdy; listen [::]:80; client_body_buffer_size 100k; client_max_body_size 100k;

Re: SPDY: nginx/1.6.2: proxy_pass does not work when https is used

2014-12-15 Thread Payam Chychi
On 2014-12-15, 4:18 PM, Valentin V. Bartenev wrote: On Tuesday 16 December 2014 00:05:03 Yury Kirpichev wrote: Hi, I've got a problem when tried to proxy spdy traffic to host via https protocol. My config is simple like that: location /https/test { proxy_set_header X-Real-IP $remote_a

Re: SPDY: nginx/1.6.2: proxy_pass does not work when https is used

2014-12-15 Thread Valentin V. Bartenev
On Tuesday 16 December 2014 00:05:03 Yury Kirpichev wrote: > Hi, > > I've got a problem when tried to proxy spdy traffic to host via https > protocol. > > My config is simple like that: > > > location /https/test { > > proxy_set_header X-Real-IP $remote_addr; > > proxy_set_header Host

SPDY: nginx/1.6.2: proxy_pass does not work when https is used

2014-12-15 Thread Yury Kirpichev
Hi, I've got a problem when tried to proxy spdy traffic to host via https protocol. My config is simple like that: location /https/test { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_pass https://www.something.com/test; } When request is performe