You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
575 B
Plaintext
21 lines
575 B
Plaintext
5 years ago
|
# -*- depends: fastcgi -*-
|
||
|
# /usr/share/doc/lighttpd/fastcgi.txt.gz
|
||
|
# http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions#mod_fastcgi-fastcgi
|
||
|
|
||
|
## Start an FastCGI server for php (needs the php5-cgi package)
|
||
|
fastcgi.server += ( ".php" =>
|
||
|
((
|
||
|
"bin-path" => "/usr/bin/php-cgi",
|
||
|
"socket" => "/var/run/lighttpd/php.socket",
|
||
|
"max-procs" => 1,
|
||
|
"bin-environment" => (
|
||
|
"PHP_FCGI_CHILDREN" => "4",
|
||
|
"PHP_FCGI_MAX_REQUESTS" => "10000"
|
||
|
),
|
||
|
"bin-copy-environment" => (
|
||
|
"PATH", "SHELL", "USER"
|
||
|
),
|
||
|
"broken-scriptfilename" => "enable"
|
||
|
))
|
||
|
)
|