Remove duplicated `fastcgi.server` config

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
RD WebDesign 1 year ago
parent d882652a85
commit 9dcf5d27e0
No known key found for this signature in database
GPG Key ID: AE3C7FC910687F33

@ -15,13 +15,22 @@
$HTTP["url"] =~ "^/admin/" {
server.document-root = "/var/www/html"
server.stream-response-body = 1
fastcgi.server = (
".php" => (
"localhost" => (
"socket" => "/tmp/pihole-php-fastcgi.socket",
"socket" => "/run/lighttpd/php.socket",
"bin-path" => "/usr/bin/php-cgi",
"min-procs" => 0,
"max-procs" => 1,
"bin-environment" => (
"PHP_FCGI_CHILDREN" => "4",
"PHP_FCGI_MAX_REQUESTS" => "10000",
),
"bin-copy-environment" => (
"PATH", "SHELL", "USER"
),
"broken-scriptfilename" => "enable",
)
)
)

Loading…
Cancel
Save