“Nginx 禁止记录access 或者 error 日志”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
(创建页面,内容为“<pre> 下面两个指令配置时候的适用范围 main, http, mail, stream, server, location </pre> ******************************************************** ==acc…”)
 
第2行: 第2行:
 
下面两个指令配置时候的适用范围 main, http, mail, stream, server, location
 
下面两个指令配置时候的适用范围 main, http, mail, stream, server, location
 
</pre>
 
</pre>
********************************************************
+
********************************************************
  
 
==access log 关闭==
 
==access log 关闭==
第8行: 第8行:
 
  access_log  off;
 
  access_log  off;
  
********************************************************
+
  ********************************************************
  
 
==error log 关闭==
 
==error log 关闭==

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 ;