From b9e401aaa3e3770c615cb27c7b7d0b0b17f853a5 Mon Sep 17 00:00:00 2001 From: RD WebDesign Date: Wed, 25 Jan 2023 14:35:57 -0300 Subject: [PATCH] Change `min_procs` value to `1` The original configuration used the default `min_procs=`. A recent change set this value to zero, but a lot of systems started to receive error messages about the socket file and in some systems lighttpd wasn't able to restart the PHP process, returning HTTP error 503. Setting this to 1 fixed those errors. Signed-off-by: RD WebDesign --- advanced/pihole-admin.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced/pihole-admin.conf b/advanced/pihole-admin.conf index ef15c8fe..0bb6eac9 100644 --- a/advanced/pihole-admin.conf +++ b/advanced/pihole-admin.conf @@ -25,7 +25,7 @@ $HTTP["url"] =~ "^/admin/" { "localhost" => ( "socket" => "/run/lighttpd/pihole-php-fastcgi.socket", "bin-path" => "/usr/bin/php-cgi", - "min-procs" => 0, + "min-procs" => 1, "max-procs" => 1, "bin-environment" => ( "PHP_FCGI_CHILDREN" => "4",