Im Running Apache2.0.52 on a Netware 6.5sp3 server.
I am trying to control access to the /portal web pages using LDAP. The problem is that my NDS directory has users that have aliases in the tree, and users with the same ID’s in different Context within my directory structure. Any users with aliases in the tree cannot authenticate to the server. I tried messing around with the AuthLDAPDereferenceAliases commands but no combo seems to work.
<Directory VOL1:/Apache/nwdocs/portal>
Options Indexes Multiviews
AllowOverride None
Order allow,deny
#Allow from 10.10 172.16 192.168
Allow from all
AuthType Basic
AuthName "Portal"
#AuthLDAPDereferenceAliases always
AuthLDAPAuthoritative On
AuthLDAPURL ldap://LDAP_SERVER/o=DOMAIN?cn?sub
require valid-user
#Satisfy any
</Directory>
Are there LDAP commands that will make ldap not search certain context in my domain. Or is there a better way to control access to my web pages, and still make people authenticate to the directory?
I am trying to control access to the /portal web pages using LDAP. The problem is that my NDS directory has users that have aliases in the tree, and users with the same ID’s in different Context within my directory structure. Any users with aliases in the tree cannot authenticate to the server. I tried messing around with the AuthLDAPDereferenceAliases commands but no combo seems to work.
<Directory VOL1:/Apache/nwdocs/portal>
Options Indexes Multiviews
AllowOverride None
Order allow,deny
#Allow from 10.10 172.16 192.168
Allow from all
AuthType Basic
AuthName "Portal"
#AuthLDAPDereferenceAliases always
AuthLDAPAuthoritative On
AuthLDAPURL ldap://LDAP_SERVER/o=DOMAIN?cn?sub
require valid-user
#Satisfy any
</Directory>
Are there LDAP commands that will make ldap not search certain context in my domain. Or is there a better way to control access to my web pages, and still make people authenticate to the directory?