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 supports.
OS freebsd. I need disable logging for subdomain.
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 supports.
OS freebsd. I need disable logging for subdomain.
http://wiki.nginx.org/CoreModule#error_log
From wiki
To disable NGINX access and error log for all latest NGINX version
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).
Using /dev/null on systems where /var/log/nginx/* doesn't exist will cause nginx to quit.