On 8 May 2014 06:05, rodrigo.aiello <[email protected]> wrote:

> Nginx is receiving the bytes and then
> delivering. I wonder if anyone has gone through this problem and found a
> better solution.


Indeed, Nginx reads the whole response from the backend before a single
byte is sent to the client. That can add latency if your response is very
large. This is controlled by the proxy_buffering setting, so try setting it
to "no":

http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffering

Cheers,
Nicholas Sherlock
_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to