From my httpd config file for the test site. (stuff changed to protect the innocent)
ServerAdmin me
ServerAlias tessite
ServerName testsite.mydomain.com
DocumentRoot /home/websites/testsite/www
AuthType Basic
AuthBasicProvider ldap
AuthzLDAPAuthoritative off
AuthName "LDAP Auth Test"
AuthLDAPURL ldap://ldap.mydomain.com/dc=mydomain,dc=com?uid?one?objectClass=*
Require ldap-attribute employeeType=employee
AllowOverride All
|