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
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;
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;