limit_req_zone $binary_remote_addr zone=ip:10m rate=30r/m; # === 1800r/h
server {
limit_req zone=ip burst=1800 delay=50;
}
Some NGINX users seek to define rate-limiting of once in a day for specific resources. This is not possible with stock NGINX.
Our patch allows for a more fine-grained rate limit configuration.