Hi all,

I'm using authentication for an area on an apache web site with the
following directives:


# Special dealer support area
<Location  /support/dealer>
Options Indexes FollowSymLinks
AllowOverride   Limit
AuthName        dealer
AuthType        Basic
AuthUserFile    /etc/httpd/security/dealer.passwd
AuthGroupFile   /etc/httpd/security/dealer.group
<Limit GET POST>
require valid-user
</Limit>
</Location>

I don't seem to be able to mix access methods, I would like the intranet
people from the 192.168.0.0/8 to have access without being prompted for a
username password.

How can I mix the above method with the more common method of:
# Allow access to WEB statistics from local network
Alias /useage /home/webalizer/www.xxx
<Directory /home/webalizer/www.xxx>
order deny,allow
deny from all
allow from 127.0.0.1 192.168.
Options Indexes
</Directory>


Is the answer virtual hosts? one for each interface internal/external ?

tia Ian


-- 
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug

Reply via email to