Global parameters

IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable

Direcrory-Indexing Options.
diese haben auswirkung auf die ‘Options +Indexes’ angabe, also das directory-listing…

Auth-Config Snippets

Auth Configs

LDAP Auth (User)

<Location /folder>
   AuthType Basic
   AuthName "Secure"
   AuthLDAPURL "ldap://HOSTNAME:389/ou=people,dc=DCname,dc=lan?uid?sub?(objectClass=*)"
   Require valid-user
</Location>

LDAP Auth (Group)

<Location /folder>
   AuthType Basic
   AuthName "Secure"
   AuthLDAPURL "ldap://HOSTNAME:389/dc=DCname,dc=lan?uid?sub?(objectClass=*)"
   AuthLDAPGroupAttribute memberUid
   AuthLDAPGroupAttributeIsDN off
   Require group cn=engineering,ou=Groups,dc=DCname,dc=lan
</Location>

Leave a Reply