I am having an issue; I am trying to proxy a url for Peoplesoft and the destiination server is rewriting the url to the client and then the client can't access the site:
proxy server = proxy.domain.com
peoplesoft server = peoplesoft.internal.domain.com
my configuration:
ProxyPass /web4/
http://peoplesoft.internal.domain.com:10500/psp/
ProxyPassReverse /web4/
http://peoplesoft.internal.domain.com:10500/psp/
The first pass works fine:
client url =
https://proxy.domain.com/web4/content................
then the user attempts to login and then the url is:
client url =
http://peoplesoft.internal.domain.com:10500/psp/content...........
is there any way to prevent the client url from being fully rewritten? this is the first time I have come into this issue with doing proxy reverses.