I have my apache 2 webserver inside my firewall. Wanting to have it act as a reverse proxy to an additional web server within our network. I have it partially working, except the graphics from the page off the 2nd web server are not being served to the client. Here's my reverse proxy portion of my cfg:
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /asr [192.168.0.9...]
ProxyPassReverse /asr [192.168.0.9...]
Any suggestions?
TIA,
Steve