Say I set
limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s; server { location / { limit_req zone=one burst=5 nodelay; }
Then within 5 seconds I send 10 requests per second.
Which query should see 200 and which should see 503 ?
Will this be the first of every 10 queries?
Or nginx monitor that bad users are continuously sending requests, in which case only the first of 50 requests will receive 200 ?
source share