I hope this is the
right mailing list to request information regarding the changes on mod_proxy
from Apache 1.3 to apache
2.0
We used in Apache
1.3.X the followin setup which no loner works under apacge 2.0 and I was
wondering if any one can help. I have read the doc's regarding the new settings
and directives however I still can not find and adequate
solution.
We use Virtual
server with mod_proxy and have certain directories protected via password
files.
The proxy is to a
remote server and the password file is on the local apache proxy
server.
The configuration
that works under 1.3 but no longer does on 2.0 is:
<VirtualHost 10.5.21.212:80>
UseCanonicalName off
ProxyRequests off
UseCanonicalName off
ProxyRequests off
ProxyPass /
http://10.5.10.51
ProxyPassReverse / http://10.5.10.51
ProxyPassReverse / http://10.5.10.51
<Location
/admin/>
AllowOverride AuthConfig
AuthUserFile /etc/httpd/conf/passwd/adminpasswords
AuthName "Live Corp Admin"
AuthType Basic
require valid-user admin
</Location>
AllowOverride AuthConfig
AuthUserFile /etc/httpd/conf/passwd/adminpasswords
AuthName "Live Corp Admin"
AuthType Basic
require valid-user admin
</Location>
ServerName yyy.yyy.com
ServerAlias yyy
ServerAdmin [EMAIL PROTECTED]
ErrorLog /var/log/httpd/error_log_Virtual_yyy
TransferLog /var/log/httpd/access_log_virtual_yyy
</VirtualHost>
