Commit 2afb5b38 authored by Graham Leggett's avatar Graham Leggett
Browse files

Added a default commented-out mod_ldap and mod_auth_ldap

configuration to httpd-std.conf and httpd-win.conf
PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90352 13f79535-47bb-0310-9956-ffa450edef68
parent f7ab7f09
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
Changes with Apache 2.0.25-dev

  *) Added a default commented-out mod_ldap and mod_auth_ldap
     configuration to httpd-std.conf and httpd-win.conf
     [Graham Leggett]

  *) Added documentation for mod_ldap and mod_auth_ldap.
     [Graham Leggett]

+30 −0
Original line number Diff line number Diff line
@@ -175,6 +175,7 @@ MaxRequestsPerChild 0
#LoadModule auth_db_module modules/mod_auth_db.so
#LoadModule auth_dbm_module modules/mod_auth_dbm.so
#LoadModule auth_digest_module modules/mod_auth_digest.so
#LoadModule auth_ldap_module modules/mod_auth_ldap.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule dav_module modules/mod_dav.so
#LoadModule dav_fs_module modules/mod_dav_fs.so
@@ -182,6 +183,7 @@ MaxRequestsPerChild 0
#LoadModule file_cache_module modules/mod_file_cache.so
#LoadModule headers_module modules/mod_headers.so
#LoadModule info_module modules/mod_info.so
#LoadModule ldap_module modules/mod_ldap.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule rewrite_module modules/mod_rewrite.so
@@ -846,6 +848,34 @@ BrowserMatch "JDK/1\.0" force-response-1.0
#    Allow from .your_domain.com
#</Location>

#
# Enable the LDAP connection pool and shared memory cache. Enable the
# LDAP cache status handler. Requires that mod_ldap be loaded. Change
# the ".your_domain.com" to match your domain to enable.
#
#<IfModule util_ldap.c>
#
#    LDAPSharedCacheSize 200000
#    LDAPCacheEntries 1024
#    LDAPCacheTTL 600
#    LDAPOpCacheEntries 1024
#    LDAPOpCacheTTL 600
#
#    <Location /ldap-status>
#        SetHandler ldap-status
#        Order deny,allow
#        Deny from all
#        Allow from .your_domain.com
#        <IfModule mod_auth_ldap.c>
#            AuthLDAPEnabled on
#            AuthLDAPURL ldap://127.0.0.1/dc=example,dc=com?uid?one
#            AuthLDAPAuthoritative on
#            require valid-user
#        </IfModule>
#    </Location>
#
#</IfModule>

#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
+30 −0
Original line number Diff line number Diff line
@@ -113,6 +113,7 @@ MaxRequestsPerChild 0
#LoadModule auth_anon_module modules/mod_auth_anon.so
#LoadModule auth_dbm_module modules/mod_auth_dbm.so
#LoadModule auth_digest_module modules/mod_auth_digest.so
#LoadModule auth_ldap_module modules/mod_auth_ldap.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule dav_module modules/mod_dav.so
#LoadModule dav_fs_module modules/mod_dav_fs.so
@@ -120,6 +121,7 @@ MaxRequestsPerChild 0
#LoadModule file_cache_module modules/mod_file_cache.so
#LoadModule headers_module modules/mod_headers.so
#LoadModule info_module modules/mod_info.so
#LoadModule ldap_module modules/mod_ldap.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule rewrite_module modules/mod_rewrite.so
#LoadModule speling_module modules/mod_speling.so
@@ -765,6 +767,34 @@ BrowserMatch "JDK/1\.0" force-response-1.0
#    Allow from .@@DomainName@@
#</Location>

#
# Enable the LDAP connection pool and shared memory cache. Enable the
# LDAP cache status handler. Requires that mod_ldap be loaded. Change
# the ".your_domain.com" to match your domain to enable.
#
#<IfModule util_ldap.c>
#
#    LDAPSharedCacheSize 200000
#    LDAPCacheEntries 1024
#    LDAPCacheTTL 600
#    LDAPOpCacheEntries 1024
#    LDAPOpCacheTTL 600
#
#    <Location /ldap-status>
#        SetHandler ldap-status
#        Order deny,allow
#        Deny from all
#        Allow from .your_domain.com
#        <IfModule mod_auth_ldap.c>
#            AuthLDAPEnabled on
#            AuthLDAPURL ldap://127.0.0.1/dc=example,dc=com?uid?one
#            AuthLDAPAuthoritative on
#            require valid-user
#        </IfModule>
#    </Location>
#
#</IfModule>

#
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server: