thirdculture/etc/lighttpd/mod_fastcgi_fpm.conf
2024-07-18 14:09:32 -04:00

16 lines
488 B
Text

###############################################################################
# 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 :