Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > 7d70ae60c3e6ec4b0497265db25fc25c > files > 1

apache2-mod_ldap-2.0.44-11mdk.ppc.rpm


<IfDefine HAVE_LDAP>
  <IfModule !util_ldap.c>
    LoadModule ldap_module    extramodules/mod_ldap.so
  </IfModule>
</IfDefine>

<IfDefine HAVE_AUTH_LDAP>
  <IfModule !mod_auth_ldap.c>
    LoadModule auth_ldap_module   extramodules/mod_auth_ldap.so
  </IfModule>
</IfDefine>

# Examples below are taken from the online documentation
# Refer to:
# http://localhost/manual/mod/mod_ldap.html
# http://localhost/manual/mod/mod_auth_ldap.html

<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 127.0.0.1
    </Location>

</IfModule>

<IfModule mod_auth_ldap.c>

    #AuthLDAPURL ldap://ldap1.airius.com:389/ou=People, o=Airius?uid?sub?(objectClass=*)
    #require valid-user

</IfModule>