Is there any way to disable access_log
for 200 HTTP response code? I tried using conditions but it seems access_log
directive is not allowed in an if
block. I tried this:
access_log /var/log/nginx/access_log;
if ($http_status == 200){
access_log off; # <---------
}
but it is not valid
# nginx -t
nginx: [emerg] "access_log" directive is not allowed here ...
Is there any way to do this?