如何禁用 nginx 向 syslog 发送消息?

如何禁用 nginx 向 syslog 发送消息?

我的 nginx 向 syslog 发送了很多消息,但我不需要它们。在我的 nginx.conf 中:

      error_log  /var/log/nginx-error.log  notice;
        ......
      server {
      access_log  off;
      location /
      {
         .... 
        }
      }

但在我/var/log/message 看来

Nov 22 23:25:09 cache3 nginx: 2011/11/22 23:25:09 [error] 3437#0: *32172530         kevent() reported about an closed connection (60: Operation timed out) while reading response header from upstream, client: , server: , request: "GET http://www.igoido012.com//vk HTTP/1.1", upstream: "http:////vk", host: "www.igoido012.com", referrer: "http://www.baidu.com/"
Nov 22 23:25:09 cache3 nginx: 2011/11/22 23:25:09 [error] 3437#0: *32099531 upstream timed out (60: Operation timed out) while reading response header from upstream, client: , server: , request: "GET http://t.web2.qq.com/channel/poll?msg_id=0&clientid=431509&t=1321975433305 HTTP/1.1", upstream: "http://:80/channel/poll?msg_id=0&clientid=431509&t=1321975433305", host: "t.web2.qq.com", referrer: "http://t.web2.qq.com/proxy.html?v=20110331001"

如何防止 nginx 向我的系统日志发送消息?

答案1

我不知道 nginx 会在没有修补的情况下发送到 syslog:

http://wiki.nginx.org/3rdPartyModules#Third_party_patches

因此,我假设您有一个自定义版本的 nginx。查看补丁源以获取有关如何配置它的提示:

https://github.com/yaoweibin/nginx_syslog_patch

如果您正在运行直接 nginx,那么其他操作就会将这些日志条目放入 syslog 中。

相关内容