client closed prematurely connection while sending to client, in nginx

后端 未结 6 2003
名媛妹妹
名媛妹妹 2021-01-31 16:51

I have error in nginx error.log:

2010/12/05 17:11:49 [info] 7736#0: *1108 client closed prematurely connection while sending to client, 
client: 188.72.80.201, s         


        
6条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-31 17:26

    I had same problem, found that nginx closes the connection because of send_timeout setting. I increased and it is fixed.

    http
    {
    send_timeout 20;
    ...
    }
    

提交回复
热议问题