Hi,

On Thu, Nov 16, 2017 at 09:15:02PM +0500, ???? ??????? wrote:
> Try
> 
> proxy_buffering off;
> proxy_request_buffering off;
> 
> in nginx

Good point, it's indeed possible that some slow clients are keeping
application connections opened and that the default buffering in nginx
hides it.

It's also possible to do something similar within the limit of one buffer
in haproxy by adding :

   option http-buffer-request

Haproxy will then wait for either a full request or a full request buffer.
Buffers default to 16 kB so that should be enough here.

Willy

Reply via email to