Re: reverse proxy removes Transfer-Encoding: chunked

2013-09-23 Thread Maxim Dounin
Hello! On Mon, Sep 23, 2013 at 02:34:28PM -0400, Pommi wrote: > I'm trying to setup a nginx (1.4.1) reverse proxy to a HornetQ API using > this configuration: > > proxy_http_version 1.1; > proxy_set_header Host $host; > upstream app { > server 127.0.0.1:8000; > keepalive 8; > } > server

reverse proxy removes Transfer-Encoding: chunked

2013-09-23 Thread Pommi
I'm trying to setup a nginx (1.4.1) reverse proxy to a HornetQ API using this configuration: proxy_http_version 1.1; proxy_set_header Host $host; upstream app { server 127.0.0.1:8000; keepalive 8; } server { listen 0.0.0.0:7000; server_name localhost; location / { deny all; }