<div dir="ltr"><div class="gmail_default" style="font-size:small;color:rgb(51,51,153)">I tend to use official documentation only, and I run servers, not Windows.<br><br></div><div class="gmail_default" style="font-size:small;color:rgb(51,51,153)">However, thanks for the pointer: the answer might be that 'if' parameter... However not available in the stable branch yet.<br></div><div class="gmail_default" style="font-size:small;color:rgb(51,51,153)">I will see to it. Thanks again!<br></div><div class="gmail_extra"><div><div class="gmail_signature"><font size="1"><span style="color:rgb(102,102,102)">---<br></span><b><span style="color:rgb(102,102,102)">B. R.</span></b><span style="color:rgb(102,102,102)"></span></font></div></div>
<br><div class="gmail_quote">On Sat, Apr 11, 2015 at 2:10 PM, itpp2012 <span dir="ltr"><<a href="mailto:nginx-forum@nginx.us" target="_blank">nginx-forum@nginx.us</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Page 18 from nginx for Windows - documentation 1.3;<br>
<br>
map $request_uri $loggablevhts {<br>
default      1;<br>
/ngxvtstatus      0; # zero=do not log<br>
/vtsvalues.js      0; # zero=do not log<br>
/vtsvalues-eop.js      0; # zero=do not log<br>
/ngxvtstatus/format/json    0; # zero=do not log<br>
}<br>
map $remote_addr $lcladdrvhts {<br>
default      1;<br>
~^(127.0.0.*)$      0; # zero=do not log<br>
}<br>
<br>
# don't log vhts entries when request is local or from management interface<br>
map $loggablevhts$lcladdrvhts $loggable {<br>
default      0;<br>
~1      1;<br>
}<br>
<br>
access_log   /path/to/access.log  combined  if=$loggable;<br>
<br>
“A request will not be logged if the (IF) condition evaluates to "0" or an<br>
empty string”<br>
<br>
Two simple ‘maps’ which are then combined tested in the third ‘map’ which is<br>
used in the<br>
IF evaluation of the log directive.<br>
<br>
Tweak, change, add your own stuff with $request<br>
<br>
See also nginx-simple-WAF.conf in the nginx for Windows release archives.<br>
<br>
Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,257961,257964#msg-257964" target="_blank">http://forum.nginx.org/read.php?2,257961,257964#msg-257964</a><br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a></blockquote></div><br></div></div>