Hi there,
Not sure if anyone has experienced this before.
I have a app which gets requests with header "Transfer-Encoding: chunked" and get's a json doc as a post call. For some reason, nginx is in most cases splitting that document into multiple request to upstream server. That said in some cases it works fine as well when nginx decides to send the full request as is.
The request from app perspective works perfectly fine without nginx but i will need it to work through nginx as it's a location inside the vhost and i can not have multiple DNS's for it.
I have tried option like tcp_nodelay, tcp_nopush,
rcvbuf,
sndbuf etc.
Also, following configurations is in place as well.
proxy_request_buffering off;
proxy_buffering off;
proxy_http_version 1.1;
fastcgi_buffering off;
Please suggest what possibly can be tweaked here to make it work.
thanks,
Pankaj
_______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx