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
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;
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
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
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