How to disable access_log to images but log 404s

hi,

I am suppressing the access_log for images and other files in the /res/
directory:

 location ^~ /res/ {

    error_page  404  /res/images/100candles-logo-square.png;
    expires     14d;
    access_log  off;
}

but I would like to log the 404s in the access_log

how can I do that?

TIA

Try to set log_not_found
http://nginx.org/en/docs/http/ngx_http_core_module.html#log_not_found
to
off

On Thu, Oct 30, 2014 at 11:56 AM, Igal @ getRailo.org
[email protected]

Hi. Maybe you can do something like:
location ^~ /res/ {
error_page 404 /res/images/100candles-logo-square.png;
expires 14d;
access_log off;
location = /res/images/100candles-logo-square.png {
access_log on;
}
}

2014-10-30 15:56 GMT+02:00 Igal @ getRailo.org [email protected]: