From b5e7e49b5d416c237d7192076b67facf29380025 Mon Sep 17 00:00:00 2001 From: casjay Date: Tue, 18 Oct 2022 18:17:17 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../config/lighttpd/mod_fastcgi_fpm.conf | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/rootfs/usr/local/share/template-files/config/lighttpd/mod_fastcgi_fpm.conf b/rootfs/usr/local/share/template-files/config/lighttpd/mod_fastcgi_fpm.conf index ae40e56..767421f 100644 --- a/rootfs/usr/local/share/template-files/config/lighttpd/mod_fastcgi_fpm.conf +++ b/rootfs/usr/local/share/template-files/config/lighttpd/mod_fastcgi_fpm.conf @@ -2,19 +2,19 @@ # mod_fastcgi_fpm.conf # include'd by lighttpd.conf. ############################################################################### -fastcgi.server = ( ".php" => - ( "localhost" => - ( - "host" => "127.0.0.1", - "port" => "9000" - ) - ) - ) +fastcgi.server = ( + ".php" => + (( "host" => "127.0.0.1", + "port" => 9000, + "bin-path" => "/usr/bin/php" + )), -fastcgi.map-extensions = ( ".php3" => ".php", - ".php4" => ".php", - ".php5" => ".php", - ".phps" => ".php", - ".phtml" => ".php" ) +fastcgi.map-extensions = ( + ".php3" => ".php", + ".php4" => ".php", + ".php5" => ".php", + ".phps" => ".php", + ".phtml" => ".php" +) # vim: set ft=conf foldmethod=marker et :