Hi, there. I have apache web server installed as frontend and I have j2ee SAP Netweaver Application Server installed in Intranet server. How can I configure apache to forward requests and response to/from j2ee app server. for example, external apache server's ip is 9.20.1.1:80. internal sap server's address is 192.168.0.1/sap/bc/gui/sap/its/webgui?sap_client=200 i wand access to my sap app server for example 9.20.1.1/sapserver/sap/bc/gui/sap/its/webgui?sap_client=200
|
|
You mentioned load balancing- so presumably you want to be able to add more Application Servers that are served through a single address. I hope they are stateless or storing session information in a database. You can use Apache to serve as a reverse proxy load balancer with Here's an example of what to add to your httpd.conf from this link.
|
||
|
|
|
|
Assuming you have mod_proxy enabled, add to you're sites-available:
Be careful though as this does expose your internal site to the entire internet. |
||||
|
|
|
This is often mistakenly referred to as a reverse proxy. If you use a search engine to find "reverse proxy apache" you will get many good results. The quick answer is to add something like this to your apache.conf
See also the modrewrite rools and the [P] option. |
||
|
