Disable nginx logs

后端 未结 3 1371
鱼传尺愫
鱼传尺愫 2021-02-14 11:33

How to disable nginx logging, without crit errors?

error_log off - doesnt works, just creates filename \"off\", really, not joke.

error_log dev/null doesnt suppo

相关标签:
3条回答
  • 2021-02-14 11:40

    http://wiki.nginx.org/CoreModule#error_log

    From wiki

    Note that error_log off does not disable logging - the log will be written to a file named "off". To disable logging, you may use:

    error_log /dev/null crit;

    0 讨论(0)
  • 2021-02-14 11:46

    To disable NGINX access and error log for all latest NGINX version

      http {
    
              access_log off;
              error_log off;
    
           }
    
    0 讨论(0)
  • 2021-02-14 12:03

    Set the logging to stderr (the redirect to /dev/null does not work reliably since from version 0.7.53 /var/log/nginx/error.log) is hardcoded to be used until the config file has been read (http://wiki.nginx.org/CoreModule#error_log).

    error_log stderr crit;
    

    Using /dev/null on systems where /var/log/nginx/* doesn't exist will cause nginx to quit.

    0 讨论(0)
提交回复
热议问题