Browse Source

Update nginx keepalive (#4707)

Joan Miquel 6 years ago
parent
commit
6f430d641a

+ 1 - 1
frameworks/PHP/cakephp/deploy/nginx.conf

@@ -18,7 +18,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/codeigniter/deploy/nginx-fpm.conf

@@ -18,7 +18,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/fat-free/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/fuel/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/laravel/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/limonade/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/lithium/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/lumen/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
     
 
     open_file_cache max=2000 inactive=20s;

+ 1 - 1
frameworks/PHP/phalcon/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/phpixie/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/slim/deploy/nginx-fpm-5.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/slim/deploy/nginx-fpm-7.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/symfony/deploy/nginx.conf

@@ -20,7 +20,7 @@ http {
     tcp_nodelay on;
     keepalive_timeout 65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     open_file_cache max=2000 inactive=20s;
     open_file_cache_valid 60s;

+ 1 - 1
frameworks/PHP/yii2/deploy/nginx-fpm.conf

@@ -15,7 +15,7 @@ http {
     sendfile on;
     keepalive_timeout  65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     upstream fastcgi_backend {
         server unix:/var/run/php/php7.3-fpm.sock;

+ 1 - 1
frameworks/PHP/zend/deploy/nginx.conf

@@ -18,7 +18,7 @@ http {
 
     keepalive_timeout  65;
     keepalive_disable none;
-    keepalive_requests 1000;
+    keepalive_requests 10000;
 
     upstream fastcgi_backend {
         server unix:/var/run/php/php7.3-fpm.sock;