Hi,
I've implemented a ReverseProxy with apache using the /irj alias.
I call the http://portal/irj and the apache call http://portal:50000/irj
But, in any pages the EP call the old addrece. (http://portal:50000/irj)
How can I change this internal addrese?
thanks in advance,
david
Doesn't apache support rewriting of these through the proxy ?
See http://www.apacheweek.com/features/reverseproxies
Btw, could you post the relevant part of the apache httpd.conf file ?
You already have an active moderator alert for this content.
This is the httpd.conf relevent code:
<VirtualHost *>
ServerName portal
ServerAlias portal
ProxyPass /irj http://portal:5000/irj
ProxyPassReverse /irj http://portal:5000/irj
</VirtualHost>
With this configuration the apache work's fine, but for any reason in the EP6 any links have changed the url to portal:5000 (only for some pages)
Add comment