Nginx报错收集
Posted Lin-Grocery
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx报错收集相关的知识,希望对你有一定的参考价值。
在安装完成ngixn之后,访问页面显示空白,报错信息里面有这一条报错信息:
tailf /usr/local/nginx/logs/error.log
2018/10/26 10:58:00 [error] 25483#0: *89 open() "/usr/local/nginx/html/favicon.ico" failed (2: No such file or directory), client: 192.168.10.1, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "192.168.10.133"
之后查找资料,觉得下面的还可行
把以下配置放到 server {} 块.
关闭favicon.ico不存在的记录日志
vim /usr/local/nginx/conf/nginx.conf
location /favicon.ico {
log_not_found off;
access_log off;
}
之后重启服务
nginx -t
nginx -s reload
就没有上面的报错信息了,希望能够帮助到各位!
以上是关于Nginx报错收集的主要内容,如果未能解决你的问题,请参考以下文章
精心收集的 48 个 JavaScript 代码片段,仅需 30 秒就可理解
ubuntu16.04 yum报错:There are no enabled repos. Run “yum repolist all“ to see the repos you have.(代码片段
精心收集的 48 个 JavaScript 代码片段,仅需 30 秒就可理解!(转载)
错误记录Flutter 混合开发获取 BinaryMessenger 报错 ( FlutterActivityAndFragmentDelegate.getFlutterEngine() )(代码片段