🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay 2022-10-18 18:17:17 -04:00
parent d06c0c8e72
commit b5e7e49b5d
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -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",
fastcgi.map-extensions = (
".php3" => ".php",
".php4" => ".php",
".php5" => ".php",
".phps" => ".php",
".phtml" => ".php" )
".phtml" => ".php"
)
# vim: set ft=conf foldmethod=marker et :