Forum Moderators: phranque
In order to serve up this web site, I have added the following commands to httpd.conf of mail.domain.com.
ProxyRequests Off
ProxyPass /test [web.domain.com...]
ProxyPassReverse /test [web.domain.com...]
When I enter [mail.domain.com...] I get the correct web site, so Apache is working properly.
When I enter [web.domain.com...] on the intranet, I get the web page I expected.
When I enter [mail.domain.com...] from the internet, I get an 'Error 403 - Forbidden. You are not authorized to view this page'. I should get the same content as [web.domain.com....]
Can anybody explain what could be wrong?
Hope that helps!
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
Specifically, I did not uncomment the last two (which was my problem). :)