Mouth
Well-known member
Is anyone rate limiting /login/ access with nginx and limit_req_zone?
My nginx http section contains;
And my server section contains;
But I feel the 3 requests per min, even with a burst rate of 3, is too inadequate for XF. Wondering what others are successfully using?
My nginx http section contains;
Code:
limit_req_zone $binary_remote_addr zone=xf-login:10m rate=3r/m;
And my server section contains;
Code:
location = /login/ {
limit_req zone=xf-login burst=3 nodelay;
}
But I feel the 3 requests per min, even with a burst rate of 3, is too inadequate for XF. Wondering what others are successfully using?