fastcgi doesn't work, we use lighttpd instead

This commit is contained in:
2020-10-11 13:50:04 +02:00
parent 97ac0ce7a8
commit 6389bbb361
8 changed files with 615 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
###############################################################################
# mod_fastcgi_fpm.conf
# include'd by lighttpd.conf.
###############################################################################
server.modules += ("mod_fastcgi")
fastcgi.server = ( ".php" =>
( "localhost" =>
(
"host" => "127.0.0.1",
"port" => "9000"
)
)
)
# vim: set ft=conf foldmethod=marker et :