]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-php-spawned.conf
- enable check-local in these configs
[packages/lighttpd.git] / lighttpd-php-spawned.conf
1 # FastCGI server for PHP
2 fastcgi.server += (
3         ".php" => ((
4                 "bin-path" => "/usr/bin/php.fcgi",
5                 "socket" => "/var/run/php/php-fcgi-" + var.pid + ".sock",
6                 "max-procs" => 2,
7                 "idle-timeout" => 20,
8                 "bin-environment" => (
9                         "PHP_FCGI_CHILDREN" => "4",
10                         "PHP_FCGI_MAX_REQUESTS" => "10000"
11                 ),
12                 "bin-copy-environment" => (
13                         "PATH", "SHELL", "USER"
14                 ),
15                 "broken-scriptfilename" => "enable",
16                 "check-local" => "enable",
17         ))
18 )
19
20 static-file.exclude-extensions += (".php")
This page took 0.059452 seconds and 4 git commands to generate.