rabin 3 months ago
parent
commit
462b2cc7e5
1 changed files with 3 additions and 3 deletions
  1. 3 3
      container/conf/web/php7/php-fpm.d/www.conf

+ 3 - 3
container/conf/web/php7/php-fpm.d/www.conf

@@ -104,7 +104,7 @@ pm = dynamic
 ; forget to tweak pm.* to fit your needs.
 ; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
 ; Note: This value is mandatory.
-pm.max_children = 50
+pm.max_children = 200
 
 ; The number of child processes created on startup.
 ; Note: Used only when pm is set to 'dynamic'
@@ -114,12 +114,12 @@ pm.start_servers = 20
 ; The desired minimum number of idle server processes.
 ; Note: Used only when pm is set to 'dynamic'
 ; Note: Mandatory when pm is set to 'dynamic'
-pm.min_spare_servers = 10
+pm.min_spare_servers = 20
 
 ; The desired maximum number of idle server processes.
 ; Note: Used only when pm is set to 'dynamic'
 ; Note: Mandatory when pm is set to 'dynamic'
-pm.max_spare_servers = 30
+pm.max_spare_servers = 50
 
 ; The number of seconds after which an idle process will be killed.
 ; Note: Used only when pm is set to 'ondemand'