Reverse Proxy ans LDAP anbinden
div. Module freischalten (authnz_ldap_modul, Proxy Zeugs, etc)
Anpassung vhosts Datei:
Achtung: gilt für alle Reverse Proxy Einträge!
<Location />
Order allow,deny
Allow from all
#AD Connect START
# Basic authentication with LDAP against MS AD
AuthType Basic
AuthBasicProvider ldap
# AuthLDAPURL specifies the LDAP server IP, port, base DN, scope and filter
# using this format: ldap://host:port/basedn?attribute?scope?filter
AuthLDAPURL "ldap://dom.local:389/DC=ts,DC=local?sAMAccountName?sub?(objectClass=user)" NONE
# The LDAP bind username and password
AuthLDAPBindDN "dash@dom.local"
AuthLDAPBindPassword "asdf1234"
LDAPReferrals Off
AuthUserFile /dev/null
AuthName "Bitte anmelden"
# to authenticate a domain group, specify the full DN
AuthLDAPGroupAttributeIsDN on
require ldap-group CN=Sicherheitsgruppe,CN=Users,DC=ts,DC=local
LogLevel debug
#AD Connect ENDE
#BugEnde
</Location>