Files
docker-images/apps/web/rompr/etc_lighthttpd/mod_fastcgi_fpm.conf
2020-10-31 23:47:09 +01:00

17 lines
474 B
Plaintext

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