summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/lighttpd/conf.d/mod_fastcgi_php.conf
blob: cc18de701bfa069ba2447b63e0184628a943174a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fastcgi.map-extensions = ( ".html" => ".php" )
index-file.names += ( "index.php" )

fastcgi.server = ( ".php" =>
 ( "localhost" =>
   (
     "socket" => "/tmp/php-fastcgi.socket",
     "bin-path" => "/usr/bin/php-cgi",
     "min-procs" => 1,
     "max-procs" => 2,
     "max-load-per-proc" => 8,
     "idle-timeout" => 50,
     # Fix PATH_INFO for PHP scripts that rely on it (like Wordpress).
     "broken-scriptfilename" => "enable"
    )
   )
 )