首页 > 代码库 > nginx过滤报错日志

nginx过滤报错日志

location ~ \.ico$ {

    log_not_found off;
#    access_log off;
}

access_log表示匹配以.ico结尾的地址,访问日志是否开启。

log_not_found表示没有发现该资源是否记录错误日志。

本文出自 “Victor的奋斗历程” 博客,请务必保留此出处http://victor2016.blog.51cto.com/6768693/1885415

nginx过滤报错日志