AN
Size: a a a
AN
HF
E
HF
AN
Requests are logged in the context of a location where processing ends. It may be different from the original location, if an internal redirect happens during request processing.- the log phase occured around /404.html, which has no access log defined - therefor default one was used.
E
HF
location / {
access_log /var/log/nginx/catchall.log;
return 404;
}
HF
404.html
E
E
location ~ '^/(400|401|403|404|405|429|502|503)\.html$' {
root /var/www/error;
internal;
}
E
HF
HF
E
HF
AN
HF
AN
E
HF