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 :