Ok, thanks!
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,261424,261428#msg-261428
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Hello!
On Fri, Sep 04, 2015 at 08:42:54AM -0400, donatasm wrote:
[...]
> but also i sometimes randomly get partially cut responses:
>
> curl -i http://localhost:7070/demo
>
> HTTP/1.1 200 OK
> Server: nginx/1.9.4
> Date: Fri, 04 Sep 2015 12:24:35 GMT
> Content-Type: text/plain
> Content-Length
Given the following nginx config:
---
master_process off;
daemon off;
events {
worker_connections 16384;
}
http {
error_log stderr debug;
access_log on;
log_not_found on;
client_body_buffer_size 64k;
client_body_in_single_buffer on;
upstream nodes {
server 127.0.0.1:8000 max_