But
location / {
limit_req zone=myzone burst=3 nodelay;
index lala.html;
}
matches any rewrite, right? So
location ~ /dont-rate-limit {
rewrite ^(.*)$ /no.txt;
}
will also be rate limited?
I only want to rate limit *some* rewritten pages. :/
location / {
limit_req zone=myzone burst=3 nodelay;
index lala.html;
}
matches any rewrite, right? So
location ~ /dont-rate-limit {
rewrite ^(.*)$ /no.txt;
}
will also be rate limited?
I only want to rate limit *some* rewritten pages. :/