nginx: up connections limit to 30
This commit is contained in:
parent
18fda4674e
commit
1884414154
@ -48,7 +48,7 @@ server {
|
||||
|
||||
location / {
|
||||
limit_req zone=req_limit_per_ip burst=5 nodelay;
|
||||
limit_conn conn_limit_per_ip 10;
|
||||
limit_conn conn_limit_per_ip 30;
|
||||
|
||||
proxy_pass http://app;
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@ server {
|
||||
|
||||
location / {
|
||||
limit_req zone=req_limit_per_ip burst=5 nodelay;
|
||||
limit_conn conn_limit_per_ip 10;
|
||||
limit_conn conn_limit_per_ip 30;
|
||||
|
||||
proxy_pass http://app;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user