nginx: remove limit_req delay
This commit is contained in:
parent
1afc6bd316
commit
940f2915d2
@ -47,7 +47,7 @@ server {
|
||||
}
|
||||
|
||||
location / {
|
||||
limit_req zone=req_limit_per_ip burst=30 delay=20;
|
||||
limit_req zone=req_limit_per_ip burst=30;
|
||||
limit_conn conn_limit_per_ip 30;
|
||||
|
||||
proxy_pass http://app;
|
||||
|
||||
@ -9,7 +9,7 @@ server {
|
||||
listen 80;
|
||||
include /etc/nginx/mime.types;
|
||||
|
||||
limit_req zone=req_limit_per_ip burst=30 delay=20;
|
||||
limit_req zone=req_limit_per_ip burst=30;
|
||||
limit_conn conn_limit_per_ip 30;
|
||||
|
||||
location / {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user