Igor Sysoev schrieb:
>> is there any way to log only HTTP codes >= 400 (maybe only 404 errors)
>> in the access.log? I'm not interested in successful delivery, redirects
>> or similar.
>
> location / {
> access_log off;
> error_page 404 /404;
> }
>
> location = /404 {
> access_log /path/to/log;
> }
hi Igor,
thank you very much!
Regards,
Peter