Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reverse proxy

Status
Not open for further replies.

stev8ball

MIS
Apr 19, 2005
1
US
I'm trying to set my apache web server as a reverse proxy to another web server in our local network. Got it to work, for the most part, except none of the graphics get served to the client.

Here's my proxy code:

ProxyRequests Off

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass /asr ProxyPassReverse /asr
 
It looks as if you're targetting a specific page, select_InputForm, rather than a directory. What is the form of the urls of the target graphics files? In any case it's better to target directory rewrites and proxy rewrites by using a trailing slash, as your code will do strange things when targetting the url /asrfoo, for example.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top