22 Feb
2005
22 Feb
'05
17:01
With apache 1.3 i was using mod_proxy to access tomcat server from an apache virtualhost. With Apache 2.0 i always get a 403 forbidden reply by apache. Can you help me? My vhost configuration is <VirtualHost myhost.mydomain.com:443> ServerAdmin sysadmin@mydomain.com ServerName myhost.mydomain.com ProxyVia On ProxyRequests On <Proxy *> Order Allow,Deny Allow from all </Proxy> ProxyPass / http://localhost:8080 ProxyPassReverse / http://localhost:8080 ErrorLog /var/log/apache2/vhost-error_log TransferLog /var/log/apache2/vhost-access_log </VirtualHost>