]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-php-external.conf
- enable check-local in these configs
[packages/lighttpd.git] / lighttpd-php-external.conf
1 # FastCGI server for PHP
2 fastcgi.server += (
3         ".php" => ((
4                 "socket" => "/var/run/php/fcgi.sock",
5                 # we enable check-local so you can use server.error-handler-404 for php files too
6                 "check-local" => "enable",
7                 "bin-copy-environment" => (
8                         "PATH", "SHELL", "USER"
9                 ),
10         ))
11 )
12
13 #fastcgi.server += (
14 #       ".php" => ((
15 #               "host" => "127.0.0.1",
16 #               "port" => 1026,
17 #       )),
18 #)
19
20 static-file.exclude-extensions += (".php")
This page took 0.032558 seconds and 4 git commands to generate.