aboutsummaryrefslogtreecommitdiffstats
path: root/main/lighttpd/mod_fastcgi_fpm.conf
blob: 926137a434aa00a9b7a90c645dcbfbd972b305aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
###############################################################################
# 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 :