From 77eb1492de3585d47876b091beebce5ba6166cd4 Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 4 Oct 2023 23:23:20 +0100 Subject: [PATCH] Tweak PHP-FPM --- opt/php/www.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opt/php/www.conf b/opt/php/www.conf index 0f7bc0ef..19024b37 100644 --- a/opt/php/www.conf +++ b/opt/php/www.conf @@ -111,7 +111,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 = 90 ; The number of child processes created on startup. ; Note: Used only when pm is set to 'dynamic' @@ -121,7 +121,7 @@ pm.start_servers = 10 ; 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 = 5 ; The desired maximum number of idle server processes. ; Note: Used only when pm is set to 'dynamic'