nginx关闭favicon.ico、robots.txt日志记录 nginx关闭favicon.ico、robots.txt日志记录配置
人气:0想了解nginx关闭favicon.ico、robots.txt日志记录配置的相关内容吗,在本文为您仔细讲解nginx关闭favicon.ico、robots.txt日志记录的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:nginx,favicon.ico,robots.txt,日志记录,下面大家一起来学习吧。
nginx日志最近发生大量访问favicon.ico无法找到的404错误日志,小编感觉很影响服务器性能,对于一个高并发的服务器每一个错误都会影响性能,所以需要关闭访问favicon.ico的日志记录功能。
复制代码 代码如下:
# 把以下配置放到 server {} 块.
#关闭favicon.ico不存在时记录日志
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
# 不允许访问隐藏文件例如 .htaccess, .htpasswd, .DS_Store (Mac).
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}
加载全部内容