summaryrefslogtreecommitdiff
path: root/tests/examplefiles/lighttpd_config.conf
diff options
context:
space:
mode:
authorthatch <devnull@localhost>2008-07-23 05:18:42 -0700
committerthatch <devnull@localhost>2008-07-23 05:18:42 -0700
commit4680716d335e4871e1296b7015d1ef69b453c0f7 (patch)
treeb9a8e8c66765c76bce1eb762bfeb4183a5dd589a /tests/examplefiles/lighttpd_config.conf
parent55abdeec16380cd071a8f4ea715163244f504097 (diff)
downloadpygments-4680716d335e4871e1296b7015d1ef69b453c0f7.tar.gz
Add basic lighttpd config lexer
Diffstat (limited to 'tests/examplefiles/lighttpd_config.conf')
-rw-r--r--tests/examplefiles/lighttpd_config.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/examplefiles/lighttpd_config.conf b/tests/examplefiles/lighttpd_config.conf
new file mode 100644
index 00000000..8475f378
--- /dev/null
+++ b/tests/examplefiles/lighttpd_config.conf
@@ -0,0 +1,13 @@
+fastcgi.server = ( ".php" => ((
+ "bin-path" => "/path/to/php-cgi",
+ "socket" => "/tmp/php.socket",
+ "max-procs" => 2,
+ "bin-environment" => (
+ "PHP_FCGI_CHILDREN" => "16",
+ "PHP_FCGI_MAX_REQUESTS" => "10000"
+ ),
+ "bin-copy-environment" => (
+ "PATH", "SHELL", "USER"
+ ),
+ "broken-scriptfilename" => "enable"
+ )))