I\'m trying to \"ignore\" or redirect certain request in the nginx log based on the request URI.
So far I have this:
server { listen 80; #.
You can do this with conditional logging. It would look something like
map $request $loggable { ~*lbcheck\.html 0; default 1; } access_log /path/logs/name.log if=$loggable;