Hello
I want to control access to a folder called portal on my server. So far i have it authenticating users without any problems. However I dont want people on my local LAN to have to login to the server. I added the Allow From 10.10 172.16 192.168 option in the block down below but it still asks for users credentials. How can i allow free access to the server folder without then having to log in when they are on the LAN?
DocumentRoot SYS:\Apache2\nwdocs
Alias /portal "SYS:/Apache2/nwdocs/portal"
# TABLE: (1)
LoadModule ldap_module modules/utilldap.nlm
LoadModule auth_ldap_module modules/authldap.nlm
LoadModule jk_module modules/mod_jk.nlm
LoadModule edir_module modules/mod_edir.nlm
# TABLE: (2)
<Directory />
<Directory SYS:/Apache2/nwdocs/portal>
Options Indexes Multiviews
AllowOverride None
Order deny,allow
Allow from 10.10 172.16 192.168
AuthType Basic
AuthName "Mondo Novo Secure Access"
require valid-user
AuthLDAPAuthoritative On
AuthLDAPURL
ldaps://upgrade.novoco.com/o=test?uid?sub</Directory>
# TABLE: (3)