if a location match, the processing stops?
I try to solve my last problem with this:
location ~ / {
if ($http_user_agent ~* httperf) {
access_log off;
}
}
and almos works, but my php scripts stop working. So it seems that if
a location match, it didn´t try the others.
is that right? If so, what is the evaluation order, the definition
order?