From 5c3577efba38da212313bc3ca4a3e68728bc409d Mon Sep 17 00:00:00 2001 From: Brent Dacus <22330436+bdacus01@users.noreply.github.com> Date: Wed, 28 Dec 2022 16:39:56 -0600 Subject: [PATCH] Update php.md Line 416 remove "pm.process_idle_timeout = 10s" This setting only works with Ondemand https://www.php.net/manual/en/install.fpm.configuration.php pm.process_idle_timeout The number of seconds after which an idle process will be killed. Used only when pm is set to ondemand. Available units: s(econds)(default), m(inutes), h(ours), or d(ays). Default value: 10s. --- docs/guides/web/php.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/guides/web/php.md b/docs/guides/web/php.md index 24ba5cc441..58d7a40eab 100644 --- a/docs/guides/web/php.md +++ b/docs/guides/web/php.md @@ -413,7 +413,6 @@ pm.max_children = 50 pm.start_servers = 12 pm.min_spare_servers = 12 pm.max_spare_servers = 36 -pm.process_idle_timeout = 10s pm.max_requests = 500 ```