summaryrefslogtreecommitdiff
blob: b72b1ce604b1bb67a9c6ed470e06399564993268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
###############################################################################
# mod_fastcgi.conf
# include'd by lighttpd.conf.
###############################################################################

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 :