Files
docker-images/apps/rompr/etc_lighthttpd/mod_fastcgi_fpm.conf
2020-10-11 14:08:53 +02: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 :