nginx: up connections limit to 30

This commit is contained in:
vchikalkin 2024-02-15 13:53:55 +03:00
parent 18fda4674e
commit 1884414154
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;