I have been fussing with this new ldap auth module and aparently I am missing something. The page that I am trying to protect will prompt for the uname/passwd but never appears to attempt to contact the ldap server according to tcpdump. Does anyone have an example of a working directive for this? mine is below and not talking.
<br><br>httpd.conf snippet<br>&lt;Directory &quot;/var/www/stuff&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Options Indexes FollowSymLinks +Includes<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AllowOverride All<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Order allow,deny<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Allow from all<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AuthBasicProvider ldap
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AuthLDAPURL ldap://ldap.sample.com/dc=sample,dc=com?uid<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; require ldap-group cn=sysadmin,ou=Group,dc=sample,dc=com<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AuthName Just stuff beyond here<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AuthType Basic<br>&lt;/Directory&gt;
<br><br><br>abbreviated module list<br># apachectl -D DUMP_MODULES<br>&nbsp;auth_basic_module (shared)<br>&nbsp;auth_digest_module (shared)<br>&nbsp;authn_file_module (shared)<br>&nbsp;authn_alias_module (shared)<br>&nbsp;authn_anon_module (shared)
<br>&nbsp;authn_dbm_module (shared)<br>&nbsp;authn_default_module (shared)<br>&nbsp;authz_host_module (shared)<br>&nbsp;authz_user_module (shared)<br>&nbsp;authz_owner_module (shared)<br>&nbsp;authz_groupfile_module (shared)<br>&nbsp;authz_dbm_module (shared)
<br>&nbsp;authz_default_module (shared)<br>&nbsp;ldap_module (shared)<br>&nbsp;authnz_ldap_module (shared)<br>