summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2016-12-03 03:56:41 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2016-12-03 03:56:41 -0500
commit7d339e21db505cb8e4bb8bf27e4a7e00d2827ea4 (patch)
treea67a5cac8f7afd47b6adfedbc1b010d72c15e557
parentf664e77909cc88f8e9866fcdea49fa49ef0e345e (diff)
downloadlighttpd-git-7d339e21db505cb8e4bb8bf27e4a7e00d2827ea4.tar.gz
comment out auth.backend.ldap.* in tests/*.conf
(mod_authn_ldap is not loaded in these test confs, so mod_authn_ldap directives are not available)
-rw-r--r--tests/bug-06.conf6
-rw-r--r--tests/bug-12.conf6
-rw-r--r--tests/fastcgi-10.conf6
-rw-r--r--tests/fastcgi-13.conf6
-rw-r--r--tests/fastcgi-auth.conf6
-rw-r--r--tests/fastcgi-responder.conf6
-rw-r--r--tests/proxy.conf6
7 files changed, 21 insertions, 21 deletions
diff --git a/tests/bug-06.conf b/tests/bug-06.conf
index 884d86b1..9595f592 100644
--- a/tests/bug-06.conf
+++ b/tests/bug-06.conf
@@ -85,9 +85,9 @@ auth.backend = "plain"
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
auth.backend.plain.groupfile = "lighttpd.group"
-auth.backend.ldap.hostname = "localhost"
-auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
-auth.backend.ldap.filter = "(uid=$)"
+#auth.backend.ldap.hostname = "localhost"
+#auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
+#auth.backend.ldap.filter = "(uid=$)"
auth.require = (
"/server-status" => (
diff --git a/tests/bug-12.conf b/tests/bug-12.conf
index 71ddc078..dda44238 100644
--- a/tests/bug-12.conf
+++ b/tests/bug-12.conf
@@ -87,9 +87,9 @@ auth.backend = "plain"
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
auth.backend.plain.groupfile = "lighttpd.group"
-auth.backend.ldap.hostname = "localhost"
-auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
-auth.backend.ldap.filter = "(uid=$)"
+#auth.backend.ldap.hostname = "localhost"
+#auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
+#auth.backend.ldap.filter = "(uid=$)"
auth.require = (
"/server-status" => (
diff --git a/tests/fastcgi-10.conf b/tests/fastcgi-10.conf
index 8b3aaff1..293ce854 100644
--- a/tests/fastcgi-10.conf
+++ b/tests/fastcgi-10.conf
@@ -80,9 +80,9 @@ auth.backend = "plain"
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
auth.backend.plain.groupfile = "lighttpd.group"
-auth.backend.ldap.hostname = "localhost"
-auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
-auth.backend.ldap.filter = "(uid=$)"
+#auth.backend.ldap.hostname = "localhost"
+#auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
+#auth.backend.ldap.filter = "(uid=$)"
auth.require = (
"/server-status" => (
diff --git a/tests/fastcgi-13.conf b/tests/fastcgi-13.conf
index 953bf83a..9c2ae57d 100644
--- a/tests/fastcgi-13.conf
+++ b/tests/fastcgi-13.conf
@@ -87,9 +87,9 @@ auth.backend = "plain"
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
auth.backend.plain.groupfile = "lighttpd.group"
-auth.backend.ldap.hostname = "localhost"
-auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
-auth.backend.ldap.filter = "(uid=$)"
+#auth.backend.ldap.hostname = "localhost"
+#auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
+#auth.backend.ldap.filter = "(uid=$)"
auth.require = (
"/server-status" => (
diff --git a/tests/fastcgi-auth.conf b/tests/fastcgi-auth.conf
index d851d24d..a1fc5848 100644
--- a/tests/fastcgi-auth.conf
+++ b/tests/fastcgi-auth.conf
@@ -95,9 +95,9 @@ auth.backend = "plain"
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
auth.backend.plain.groupfile = "lighttpd.group"
-auth.backend.ldap.hostname = "localhost"
-auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
-auth.backend.ldap.filter = "(uid=$)"
+#auth.backend.ldap.hostname = "localhost"
+#auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
+#auth.backend.ldap.filter = "(uid=$)"
auth.require = (
"/server-status" => (
diff --git a/tests/fastcgi-responder.conf b/tests/fastcgi-responder.conf
index 7cc8c8b0..5e1f9ea8 100644
--- a/tests/fastcgi-responder.conf
+++ b/tests/fastcgi-responder.conf
@@ -92,9 +92,9 @@ auth.backend = "plain"
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
auth.backend.plain.groupfile = "lighttpd.group"
-auth.backend.ldap.hostname = "localhost"
-auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
-auth.backend.ldap.filter = "(uid=$)"
+#auth.backend.ldap.hostname = "localhost"
+#auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
+#auth.backend.ldap.filter = "(uid=$)"
auth.require = (
"/server-status" => (
diff --git a/tests/proxy.conf b/tests/proxy.conf
index 0846a0fa..72b010ad 100644
--- a/tests/proxy.conf
+++ b/tests/proxy.conf
@@ -97,9 +97,9 @@ auth.backend = "plain"
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
auth.backend.plain.groupfile = "lighttpd.group"
-auth.backend.ldap.hostname = "localhost"
-auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
-auth.backend.ldap.filter = "(uid=$)"
+#auth.backend.ldap.hostname = "localhost"
+#auth.backend.ldap.base-dn = "dc=my-domain,dc=com"
+#auth.backend.ldap.filter = "(uid=$)"
auth.require = (
"/server-status" => (