summaryrefslogtreecommitdiff
path: root/tests/lighttpd.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lighttpd.conf')
-rw-r--r--tests/lighttpd.conf27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/lighttpd.conf b/tests/lighttpd.conf
index 7b224173..b752ecc4 100644
--- a/tests/lighttpd.conf
+++ b/tests/lighttpd.conf
@@ -28,7 +28,6 @@ server.modules = (
"mod_simple_vhost",
"mod_cgi",
"mod_status",
- "mod_secdownload",
"mod_deflate",
"mod_accesslog",
)
@@ -251,29 +250,3 @@ $HTTP["host"] =~ "^auth-" {
status.status-url = "/server-status"
status.config-url = "/server-config"
}
-
-$HTTP["host"] == "vvv.example.org" {
- server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
- secdownload.secret = "verysecret"
- secdownload.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
- secdownload.uri-prefix = "/sec/"
- secdownload.timeout = 120
- secdownload.algorithm = "md5"
-}
-$HTTP["host"] == "vvv-sha1.example.org" {
- server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
- secdownload.secret = "verysecret"
- secdownload.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
- secdownload.uri-prefix = "/sec/"
- secdownload.timeout = 120
- secdownload.algorithm = "hmac-sha1"
-}
-$HTTP["host"] == "vvv-sha256.example.org" {
- server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
- secdownload.secret = "verysecret"
- secdownload.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
- secdownload.uri-prefix = "/sec/"
- secdownload.timeout = 120
- secdownload.algorithm = "hmac-sha256"
- secdownload.hash-querystr = "enable"
-}