Limit IP req/s excl bots

Does anyone know if there is any truth to this blog post:

And if so where about in the code its implemented? I was trying to find
out
if its possible to use a map to control limit req/s limits but I still
cant
find the code that does what that article says is possible.

Regards,
Mathew

I also think I found that 0 length keys wont be stored. This isn’t in
the
documentation but if I understand the code correctly they aren’t, is
this
correct?

I could use a map then and get considerable flexibility.

On Wednesday 18 September 2013 17:45:54 SplitIce wrote:

I also think I found that 0 length keys wont be stored. This isn’t in the
documentation but if I understand the code correctly they aren’t, is this
correct?
[…]

Just a quote from the documentation (Module ngx_http_limit_req_module):

| The key is any non-empty value of the specified variable (empty
values
| are not accounted).

wbr, Valentin V. Bartenev

Hello!

On Wed, Sep 18, 2013 at 11:15:54PM +0930, SplitIce wrote:

I also think I found that 0 length keys wont be stored. This isn’t in the
documentation but if I understand the code correctly they aren’t, is this
correct?

It’s in the documentation, see Alphabetical index of directives

: … The key is any non-empty value of the specified variable (empty
: values are not accounted). …

On Wed, Sep 18, 2013 at 11:06 PM, SplitIce [email protected] wrote:

Does anyone know if there is any truth to this blog post:

And if so where about in the code its implemented? I was trying to find
out if its possible to use a map to control limit req/s limits but I still
cant find the code that does what that article says is possible.

The configuration provided in the post linked doesn’t do any
whitelisting. Though it’s mostly trivial to introduce one using a
map{}.


Maxim D.
http://nginx.org/en/donation.html

My bad I missed that sentence in the docco.

Thanks, Ill be using map. That blog lead me down the wrong track.