Apache http.conf allow intranet
- by Magreet
what would be the correct config to allow only authenticated users and the intranet (without need for a password) in apache?
This does not request a password and without the "satisfy any" intranet users are also required to enter a password...
<Directory "/var/www">
# Allow Network Access and/or Basic Auth
Satisfy any
allow from 192.168
AuthName "Enter passwd!"
require valid-user
AuthUserFile /var/.passwd
AuthType Basic
allow from all
order deny,allow
</Directory>