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
To disable NGINX access and error log for all latest NGINX version
http { access_log off; error_log off; }