nginx doesn't log anything
I think the problem could come from this piece of setting:
server {
listen 127.0.0.1;
server_name localhost;
location /nginx_status {
stub_status on;
>>>>access_log off; <<<<<<<<<<<<<<<< You are setting them to be off
allow 127.0.0.1;
deny all;
}