cancel
Showing results for 
Search instead for 
Did you mean: 

Web Dispatcher as reverse proxy

Former Member
0 Kudos

Hi,

I'm trying to use the Web Dispatcher in front of an NW Portal AND an ERP 05. Meaning that /irj should be requested from the portal and /sap should be requested from the ERP. It seems to me that the Web Dispatcher is able to do this, but I cannot figure out how to do it.

Can anyone help me with hints?

Best regards,

Thomas Mouritsen

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

I haven't done this on Web dispatcher, but on apache it is like this

<VirtualHost 10.10.10.10:80>

ProxyPreserveHost On

ProxyPass /irj/ http://<your hostname>:50000/irj/

ProxyPassReverse /irj/ http://<your hostname>:50000/irj/

ProxyPass /sap/ http://<your hostname>:yourport/sap/

ProxyPassReverse /sap/ http://<your hostname>:yourport/sap/

ErrorLog logs/<your hostname>.80.error.log

CustomLog logs/<your hostname>.80.custom.log common

</VirtualHost>

Where 10.10.10.10 is your app server

Former Member
0 Kudos

Thomas,

Check out this weblog

Hope that helps.

Regards,

Keith

Former Member
0 Kudos

Hi Keith,

I've seen that weblog and it dosen't tell me how to define the proxy targets. The closest part is the redirect in the bottom.

BR,

Thomas Mouritsen

Message was edited by: Thomas Mouritsen