Skip to Content
0
Former Member
Jan 10, 2008 at 12:36 PM

Apache configuration

62 Views

Hello everybody

I’m using Apache as a ReverseProxy but I’m getting an error.

I have a public url for the Portal, www.xxx.com, this url is translated to our internal server yyy.zzz.net, but our internal server has two listening ports, one for Java requests and one for ABAP request (we’re using webdynpro ABAP). So we have these sentences:

ProxyPass /irj http://yyy.zzz.net:50000/irj

ProxyPassReverse /irj http://yyy.zzz.net:50000/irj

ProxyPass /sap http://yyy.zzz.net:8000/sap

ProxyPassReverse /sap http://yyy.zzz.net:8000/sap

Also we have a RewiteRule:

RewriteRule / http://yyy.zzz.net:50000/irj/portal

With this configuration we have a problem when the portals tries to show a webdynpro ABAP because it’s created with the following url http://yyy.zzz.net:8000/sap/bc/wepdynpro/sap/zaaaaaaaa and the browser cannot show this page because it uses an internal server name (not public).

How can be replace yyy.zzz.net:8000 for www.xxx.com with an Apache?

Thank you in adavanced.