16 lines
488 B
Text
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 :
|