[ Om ]

> Hi,
> I have installed apache 2.2.2 in my local machine. I am using in
> built LDAP server on a MAC OS X server. I want to provide access to
> few resources on the webserver authenticated against LDAP. mod_ldap
> and mod_authnz_ldap modules are enabled in apache.
>
> Below is the Authorization code that i have included in Apache
>
> <Directory "/opt/apache2.2.2/htdocs">
> Options Indexes FollowSymLinks
> AllowOverride None
> Order allow,deny
> Allow from all
> AuthName "LDAP authentication required"
> AuthType Basic
> AuthLDAPURL ldap://192.168.1.3/cn=users,dc=neptune,dc=effigent,dc=net?
> uid
> require valid-user
> </Directory>

You'll need to add:

  AuthBasicProvider ldap

as well. See the docs:

  http://httpd.apache.org/docs/2.2/mod/mod_authnz_ldap.html


Rgds,
Kenneth Svee

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to