apache mod_authnz_ldap - 500 error when blank username used
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 [email protected]
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?
I just had to add...
AuthLDAPBindAuthoritative off
I'm not 100% sure why this is. Perhaps something to do with mod_authnz_ldap passing the auth on to somewhere else? but it works.
Hope this helps someone.