]> granicus.if.org Git - apache/commitdiff
Adding the LDAP README file
authorBradley Nicholes <bnicholes@apache.org>
Fri, 30 Aug 2002 19:48:17 +0000 (19:48 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Fri, 30 Aug 2002 19:48:17 +0000 (19:48 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96594 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/README.ldap [new file with mode: 0644]

diff --git a/modules/experimental/README.ldap b/modules/experimental/README.ldap
new file mode 100644 (file)
index 0000000..b8c2cf1
--- /dev/null
@@ -0,0 +1,26 @@
+Quick installation instructions (UNIX):
+
+- Copy the httpd-ldap directory into httpd-2.0/modules like so:
+
+  cp -a httpd-ldap httpd-2.0/modules
+
+- Rebuild the ./configure script
+
+  ./buildconf
+
+- Add the TWO ldap modules to the build, like this:
+
+  ./configure --with-ldap --enable-ldap --enable-auth-ldap
+
+  The --with-ldap switches on LDAP library linking in apr-util. Make
+  sure that you have an LDAP client library available such as those
+  from Netscape/iPlanet/Sun One or the OpenLDAP project.
+
+  The --enable-ldap option switches on the LDAP caching module. This
+  module is a support module for other LDAP modules, and is not useful
+  on its own.  This module is required, but caching can be disabled
+  via the configuration directive LDAPCacheEntries.
+
+  The --enable-auth-ldap option switches on the LDAP authentication
+  module.
+