I've got Apache 2.4 running on Windows Server 2012.
I've got mod_authnz_ldap working except if users put a blank username. This results in a 500 internal server error.
this is the entry in httpd.conf for the "staff" area...
<Location "/staff">
AuthType Basic
AuthName "Staff Area"
LDAPReferrals Off
AuthBasicProvider ldap
AuthUserFile /dev/null
AuthLDAPBindDN Administrator@school.com.au
AuthLDAPBindPassword MyPassword
AuthLDAPURL "ldap://server-dc1:389/ou=DomainUsers,dc=school,dc=com,dc=au?sAMAccountName?sub"
Require ldap-group cn=staff,ou=staff,ou=DomainUsers,dc=school,dc=com,dc=au
</Location>
Anything obvious that I'm missing? Does anyone else use mod_authnz_ldap? Does your server not like blank usernames?