I am trying to get a reverse web proxy working on a Windows 2003 server. I have enabled the mod_proxy and mod_proxy_http. I have added :
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyRequests off
ProxyPass /http://192.168.1.101 http://192.168.1.101/
ProxyPassReverse /http://192.168.1.101 http://192.168.1.101/ (addresses changed)
When I hit the FQDN all I get is the typical "Successful Apache install" page. Anyone have any ideas where I missed something. I've googled the hell outta this and all results give the same info...which I've tried. I've disable QoS in TCP/IP because of known issues with win32 and Apache.
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyRequests off
ProxyPass /http://192.168.1.101 http://192.168.1.101/
ProxyPassReverse /http://192.168.1.101 http://192.168.1.101/ (addresses changed)
When I hit the FQDN all I get is the typical "Successful Apache install" page. Anyone have any ideas where I missed something. I've googled the hell outta this and all results give the same info...which I've tried. I've disable QoS in TCP/IP because of known issues with win32 and Apache.
Comment