“Nginx 禁止记录access 或者 error 日志”的版本间的差异
跳到导航
跳到搜索
第8行: | 第8行: | ||
access_log off; | access_log off; | ||
− | + | ||
==error log 关闭== | ==error log 关闭== | ||
第14行: | 第14行: | ||
error_log /dev/null ; | error_log /dev/null ; | ||
+ | |||
+ | |||
+ | [[category:nginx]] |
2019年10月17日 (四) 08:22的版本
下面两个指令配置时候的适用范围 main, http, mail, stream, server, location
********************************************************
access log 关闭
access_log off;
error log 关闭
关闭 error log 千万不要写 error_log off; ,这样错误日志会被写到一个叫做 off的文件中
error_log /dev/null ;