You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
386 B
19 lines
386 B
5 years ago
|
geo $limit {
|
||
|
default 1;
|
||
|
127.0.0.1 0;
|
||
|
{% for ip in trusted_ip | default([]) %}
|
||
|
{{ ip }} 0;
|
||
|
{% endfor %}
|
||
|
{% for ip in nginx_dos_whitelisted_ip | default([])%}
|
||
|
{{ ip }} 0;
|
||
|
{% endfor %}
|
||
|
}
|
||
|
|
||
|
map $limit $limit_key {
|
||
|
0 "";
|
||
|
1 $binary_remote_addr;
|
||
|
}
|
||
|
|
||
|
limit_req_zone $limit_key zone=limit_req_std:3m rate={{ nginx_req_per_sec }}r/s;
|
||
|
limit_conn_zone $limit_key zone=limit_conn_std:3m;
|