You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually the protection about limit_conn_status / limit_req_status is nginx defaults (503) but there is 429 / Too Many Requests than is more appropriate, and since nginx-1.3.15 we can specify it!
to enable it, in conf.d/botblocker-nginx-settings.conf just add
limit_req_status 429;
limit_conn_status 429;
The text was updated successfully, but these errors were encountered:
Describe
Actually the protection about limit_conn_status / limit_req_status is nginx defaults (503) but there is 429 / Too Many Requests than is more appropriate, and since
nginx-1.3.15
we can specify it!to enable it, in
conf.d/botblocker-nginx-settings.conf
just addThe text was updated successfully, but these errors were encountered: