Adding LDAP Authentication to a Site

Add the following entry to the VirtualHost
<Directory "/var/www/html">
order allow,deny
allow from all
AuthName "Staff only"
AuthType Basic
AuthLDAPURL ldap://localhost/dc=example,dc=com
require valid-user
</Directory>