18 lines
560 B
Plaintext
18 lines
560 B
Plaintext
###############################################################################
|
|
# mod_fastcgi.conf
|
|
# include'd by lighttpd.conf.
|
|
# $Id$
|
|
###############################################################################
|
|
|
|
server.modules += ("mod_fastcgi")
|
|
fastcgi.server = ( ".php" =>
|
|
( "localhost" =>
|
|
(
|
|
"socket" => "/var/run/lighttpd/lighttpd-fastcgi-php-" + PID + ".socket",
|
|
"bin-path" => "/usr/bin/php-cgi"
|
|
)
|
|
)
|
|
)
|
|
|
|
# vim: set ft=conf foldmethod=marker et :
|