logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Apache Revese Proxy issue
Author
sumit.kau



Joined: 18 Mar 2011
Posts: 1
Location: New Delhi

PostPosted: Sat 04 Feb '12 14:15    Post subject: Apache Revese Proxy issue Reply with quote

Dear all,

I am in the process of implementing SRM portal as an external facing portal.

The scenario is LB-> Apache-> SAP Portal-> SRM

I am terminating the SSL on the LB itself and the rest of the backend applications are accessed via http.

Most of the applications are accessed using the ReWrite Rules in Apache, but the Technical RFx is not giving a pop-up to open in a new window.On the contrary, the same set up without the certificate on the LB, the scenario on http works fine.
This is a copy of the http.conf file I am using.Could you please guide, if I am missing something.

<VirtualHost *:80>
ServerAdmin webmaster@MDCLINUXVIRT
ServerName etender.abc.co.in
DocumentRoot /var/www/html/irjq
ProxyRequests Off
ProxyPreserveHost On
RequestHeader set ClientProtocol https
RewriteEngine On
RewriteRule ^/(.*)$ http://portal.abcdev.com:50000/$1 [P,NC,L]
# RewriteCond %{HTTP_HOST} ^.*?portal.abcdev.com:50000.*
# RewriteRule ^/(.*) http://etender.abc.co.in/$1?%{QUERY_STRING} [P,L]
ProxyPass /irj http://portal.abcdev.com:50000/irj
ProxyPassReverse /irj http://portal.abcdev.com:50000/irj
....
....
</VirtualHost>


<VirtualHost *:8000>
ServerAdmin webmaster@MDCLINUXVIRT
ServerName etendersrm.abc.co.in
DocumentRoot /var/www/html/srmq
ProxyRequests Off
ProxyPreserveHost On
RewriteEngine On
RequestHeader set ClientProtocol http
RewriteRule ^/(sap\(.*)$ http://srm.abcdev.com:8000/$1 [P,NC,L]
ProxyPass /sap http://srm.abcdev.com:8000/sap
ProxyPassReverse /sap http://srm.abcdev.com:8000/sap
ProxyPass /sap/bc/webdynpro http://srm.abcdev.com:8000/sap/bc/webdynpro
ProxyPassReverse /sap/bc/webdynpro http://srm.abcdev.com:8000/sap/bc/webdynpro
....
....
</VirtualHost>
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7371
Location: Germany, Next to Hamburg

PostPosted: Thu 09 Feb '12 11:18    Post subject: Re: Apache Revese Proxy issue Reply with quote

sumit.kau wrote:
but the Technical RFx is not giving a pop-up to open in a new window.
Is there a javascript or something else that shall open a popup window. And this works with http, but not with https?
Back to top


Reply to topic   Topic: Apache Revese Proxy issue View previous topic :: View next topic
Post new topic   Forum Index -> Apache