Subversion Repositories ALCASAR

Rev

Details | Last modification | View Log

Rev Author Line No. Line
2488 lucas.echa 1
#  FastCGI Module 
2
# --------------- 
3
#
4
# http://www.lighttpd.net/documentation/fastcgi.html
5
#
6
 
7
server.modules += ( "mod_fastcgi" )
8
 
9
fastcgi.server = (
10
	".php" => (
11
		"localhost" => ( 
12
			"socket" => "/var/lib/php-fpm/php-fpm.sock",
13
			"broken-scriptfilename" => "enable"
14
		)
15
	)
16
)