@@ -75,7 +75,7 @@ location / {
7575
7676 location ~* ^/(search|jsonapi|graphql)(/|$) {
7777 limit_conn perip_conn 5;
78- limit_req zone=drupal_heavy burst=10 nodelay ;
78+ limit_req zone=drupal_heavy burst=30 ;
7979 try_files $uri @drupal;
8080 }
8181
@@ -103,7 +103,7 @@ location / {
103103
104104location @drupal {
105105 limit_conn perip_conn 10;
106- limit_req zone=drupal_rps burst=30 nodelay ;
106+ limit_req zone=drupal_rps burst=150 ;
107107
108108 fastcgi_cache drupal_microcache;
109109 fastcgi_cache_key "$scheme$request_method$host$request_uri";
@@ -122,7 +122,7 @@ location @drupal {
122122
123123location @drupal-no-args {
124124 limit_conn perip_conn 10;
125- limit_req zone=drupal_rps burst=30 nodelay ;
125+ limit_req zone=drupal_rps burst=150 ;
126126
127127 fastcgi_cache drupal_microcache;
128128 fastcgi_cache_key "$scheme$request_method$host$request_uri";
@@ -141,7 +141,7 @@ location @drupal-no-args {
141141
142142location = /index.php {
143143 limit_conn perip_conn 10;
144- limit_req zone=drupal_rps burst=30 nodelay ;
144+ limit_req zone=drupal_rps burst=150 ;
145145
146146 fastcgi_cache drupal_microcache;
147147 fastcgi_cache_key "$scheme$request_method$host$request_uri";
0 commit comments