码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx Upstream timed out (110: Connection timed out)

时间:2016-07-01 13:11:43      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

Nginx错误日志中,有大量的下列信息:

Upstream timed out (110: Connection timed out) while reading response header from upstream

这种情况主要在厦门两种情况下发生:

1. nginx proxy

需要适当的调整proxy_read_timeout值。

2. Nginx作为php-fpm等等其他的有上游服务

在这种情况下,适当的调整fastcgi_read_timeout选项值

1
2
3
4
5
6
7
location ~* .php$ {
    include         fastcgi_params;
    fastcgi_index   index.php;
    fastcgi_read_timeout 150;
    fastcgi_pass    127.0.0.1:9000;
    fastcgi_param   SCRIPT_FILENAME    $document_root$fastcgi_script_name;
}

Nginx Upstream timed out (110: Connection timed out)

标签:

原文地址:http://www.cnblogs.com/balala/p/5632520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!