summaryrefslogtreecommitdiff
path: root/tests/lighttpd.conf
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2009-10-14 17:32:38 +0000
committerStefan Bühler <stbuehler@web.de>2009-10-14 17:32:38 +0000
commit8c83976dbefffaa82ed3cddbee6336f3eb1a60c1 (patch)
treeb47587d41afe644d585be01fa3bba9355fd5f4c6 /tests/lighttpd.conf
parent7322d53684c5c9bd3b81d1093b8adc0074d6875f (diff)
downloadlighttpd-git-8c83976dbefffaa82ed3cddbee6336f3eb1a60c1.tar.gz
mod_fastcgi: Add "X-Sendfile2" - supporting multiple ranged files (fixes #2008)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2651 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'tests/lighttpd.conf')
-rw-r--r--tests/lighttpd.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lighttpd.conf b/tests/lighttpd.conf
index 2202100f..f93311d0 100644
--- a/tests/lighttpd.conf
+++ b/tests/lighttpd.conf
@@ -83,7 +83,7 @@ $HTTP["url"] =~ "\.pdf$" {
}
fastcgi.debug = 0
-fastcgi.server = ( ".php" => ( ( "host" => "127.0.0.1", "port" => 1026, "broken-scriptfilename" => "enable" ) ),
+fastcgi.server = ( ".php" => ( ( "host" => "127.0.0.1", "port" => 1026, "broken-scriptfilename" => "enable", "allow-x-send-file" => "enable" ) ),
"/prefix.fcgi" => ( ( "host" => "127.0.0.1", "port" => 1026, "check-local" => "disable", "broken-scriptfilename" => "enable" ) )
)