summaryrefslogtreecommitdiff
path: root/tests/lighttpd.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lighttpd.conf')
-rw-r--r--tests/lighttpd.conf19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/lighttpd.conf b/tests/lighttpd.conf
index 83eee0e5..1893c5d4 100644
--- a/tests/lighttpd.conf
+++ b/tests/lighttpd.conf
@@ -170,6 +170,25 @@ $HTTP["host"] == "vvv.example.org" {
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"
}
$HTTP["host"] == "zzz.example.org" {