[error] 6#6: *53909 upstream tim
2020-08-13 本文已影响0人
柳华聪
[error] 6#6: *53909 upstream timed out (110: Connection问题处理
1、在网站后台导数据时,nginx报错,经过查看nginx日志发现问题所在
2、nginx错误日志:2020/08/13 08:47:52 [error] 6#6: *53909 upstream timed out (110: Connection
3、接下来,修改nginx配置文件
fastcgi_connect_timeout 120;
fastcgi_read_timeout 120;
fastcgi_send_timeout 120;
proxy_read_timeout 120; #连接成功后,后端服务器响应时间(代理接收超时)
proxy_connect_timeout 120; #连接超时时间
4、修改完重启下nginx,完美解决