From d84468ccfafc92c39e418641af10b526bbd49b0a Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Fri, 30 Aug 2002 19:48:17 +0000 Subject: [PATCH] Adding the LDAP README file git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96594 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/README.ldap | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 modules/experimental/README.ldap diff --git a/modules/experimental/README.ldap b/modules/experimental/README.ldap new file mode 100644 index 0000000000..b8c2cf1936 --- /dev/null +++ b/modules/experimental/README.ldap @@ -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. + -- 2.50.1