blob: fe1c84fece6bd22845336541cedf6442e8e0312b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
###############################################################################
# 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 :
|