Nginx 禁止记录access 或者 error 日志
跳到导航
跳到搜索
下面两个指令配置时候的适用范围 main, http, mail, stream, server, location
********************************************************
access log 关闭
access_log off;
********************************************************
error log 关闭
关闭 error log 千万不要写 error_log off; ,这样错误日志会被写到一个叫做 off的文件中
error_log /dev/null ;