All pastes #1845969 Raw Edit

root

public text v1 · immutable
#1845969 ·published 2010-03-19 19:17 UTC
rendered paste body
################################################################################ mod_fastcgi.conf# include'd by lighttpd.conf.# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/files/conf/mod_fastcgi.conf-1.4.13-r2,v 1.1 2007/04/01 23:22:00 robbat2 Exp $###############################################################################server.modules += ("mod_fastcgi")fastcgi.server = ( ".php" =>				(					(						"socket" => "/tmp/php-fastcgi-"+var.PID+".socket",,						"bin-path" => "/usr/bin/php-cgi",						"bin-environment" => 						(							"PHP_FCGI_CHILDREN" => "4",							"PHP_FCGI_MAX_REQUESTS" => "100000"						),						"min-procs" => 1,						"max-procs" => 3,					)				),				".phps" =>				(					(						"socket" => "/tmp/phps-fastcgi.socket",						"bin-path" => "/usr/bin/php-cgi -s"					)				)			)# vim: set ft=conf foldmethod=marker et :