summaryrefslogtreecommitdiff
path: root/tests/lighttpd.conf
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2022-01-11 01:46:59 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2022-01-11 02:53:20 -0500
commitc1bc5efe9a2fb424ba432cbe03ea5d1c525519e6 (patch)
treed4fc11fbfd05c146f3cb56891ca6bbc43d409f55 /tests/lighttpd.conf
parentfaa134cad58e2fa80554dcd119126fba875c4415 (diff)
downloadlighttpd-git-c1bc5efe9a2fb424ba432cbe03ea5d1c525519e6.tar.gz
[tests] _WIN32 adjustments in LightyTest.pm
separate cygwin paths from Windows native paths remove unnecessary variables remove unnecessary file copies
Diffstat (limited to 'tests/lighttpd.conf')
-rw-r--r--tests/lighttpd.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lighttpd.conf b/tests/lighttpd.conf
index f8a064ca..d7a6ece1 100644
--- a/tests/lighttpd.conf
+++ b/tests/lighttpd.conf
@@ -192,7 +192,7 @@ $HTTP["host"] == "lowercase-exclude" {
$HTTP["host"] == "lowercase-auth" {
server.force-lowercase-filenames = "enable"
auth.backend = "plain"
- auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
+ auth.backend.plain.userfile = env.SRCDIR + "/lighttpd.user"
auth.require = (
"/image.jpg" => (
"method" => "digest",
@@ -225,11 +225,11 @@ $HTTP["host"] =~ "^deflate(?:-cache)?\.example\.org$" {
$HTTP["host"] =~ "^auth-" {
$HTTP["host"] == "auth-htpasswd.example.org" {
auth.backend = "htpasswd"
- auth.backend.htpasswd.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.htpasswd"
+ auth.backend.htpasswd.userfile = env.SRCDIR + "/lighttpd.htpasswd"
}
$HTTP["host"] == "auth-plain.example.org" {
auth.backend = "plain"
- auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
+ auth.backend.plain.userfile = env.SRCDIR + "/lighttpd.user"
}
auth.require = (
"/server-status" => (