Nginx 错误汇总
程序员文章站
2022-04-05 21:36:40
...
1. Upstream timed out (110: Connection timed out) while reading response header from upstream
这种情况主要在下面两种情况下发生:
- a. Nginx 作为 proxy,需要适当的调整 proxy timeout 的值。
location / {
...
proxy_connect_timeout 70;
proxy_read_timeout 150;
proxy_send_timeout 150;
...
}
- b. Nginx作为 php-fpm 等其他的有上游服务,需要适当的调整 fastcgi_read_timeout 选项值
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;
}
2. open() “/usr/local/nginx/html/favicon.ico” failed (2: No such file or directory)
只需要关闭 favicon.ico 的 log:
location = /favicon.ico {
log_not_found off;
access_log off;
}
ref:
http://www.ttlsa.com/nginx/nginx-upstream-timed-out-110-connection-timed-out/
http://*.com/questions/9657065/nginx-and-favicon-ico-get-favicon-ico-http-1-1-failed
以上就介绍了Nginx 错误汇总,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
二本外国语大学排名及分数线(近三年汇总):分低的二本外国语大学2021年参考
-
定时备份mysql, 定时切割nginx access log的方法
-
C#实现Nginx平滑加权轮询算法
-
Android中关于相对布局RelativeLayout的技巧汇总
-
贵州提前批录取学校分数线-贵州提前批录取学校名单汇总2021参考
-
MYSQL错误:Can’t open file: ‘×××.MYI’ (errno: 145)修复方法
-
MySQL启动错误解决方法
-
MYSQL无法连接 提示10055错误的解决方法
-
解决mySQL中1862(phpmyadmin)/1820(mysql)错误的方法
-
PHP数学运算函数大汇总(经典值得收藏)