Running RH 7.2 kernel 2.4.7-10 with apache 1.3.20
I'm wanting to restrict access to Intranet site from Internet. I've added the following commands to the httpd.conf file, which works too well as it prompts for authorization even from internal hosts. Any ideas on how I can get the file to not prompt for internal clients?
deny from all
allow from 192.168
Options FollowSymLinks
AllowOverride AuthConfig
AuthName "Authorized users only"
AuthType Basic
AuthDBUserFile /etc/httpd/.dbmpasswd
require valid-user
Order allow,deny
Allow from all
I'm wanting to restrict access to Intranet site from Internet. I've added the following commands to the httpd.conf file, which works too well as it prompts for authorization even from internal hosts. Any ideas on how I can get the file to not prompt for internal clients?
deny from all
allow from 192.168
Options FollowSymLinks
AllowOverride AuthConfig
AuthName "Authorized users only"
AuthType Basic
AuthDBUserFile /etc/httpd/.dbmpasswd
require valid-user
Order allow,deny
Allow from all