Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Jazz Reverse Proxy Server

I am working on Windows 2008 server.
I am trying to get the Reverse Proxy Server working on IBM HTTP server.
I have a signed cert (CMS) and have imported certs from other servers successfully.
I can setup a system using
#Proxy setup for a Jazz Foundation Server
ProxyPass /jts/ https://servername.site.ibm.com:9449/jts/
<Location>
ProxyPassReverse /jts/

IF I try others (jts01) it will not work

I have closely followed the link below and many others and seem to be getting nowhere.
https://jazz.net/wiki/bin/view/Main/ComplexCALMDeploy#Configure_IBM_HTTP_Server_IHS_In

My goal is to have

https://servername1.site.ibm.com:944x/jts/ <jts1>
https://servername2.site.ibm.com:944x/jts/ <jts2>
https://servername3.site.ibm.com:944x/jts/ <jts3>
https://servername4.site.ibm.com:944x/jts/ <jts4>

https://servername1.site.ibm.com:944x/ccm/ <ccm1>
https://servername2.site.ibm.com:944x/ccm/ <ccm2>
https://servername3.site.ibm.com:944x/ccm/ <ccm3>
https://servername4.site.ibm.com:944x/ccm/ <ccm4>

https://servername1.site.ibm.com:944x/qm/ <qm1>
https://servername2.site.ibm.com:944x/qm/ <qm2>
https://servername3.site.ibm.com:944x/qm/ <qm3>
https://servername4.site.ibm.com:944x/qm/ <qm4>

My RTC/RQM consoles all use Apache / Tomcat out of box

0 votes



One answer

Permanent link
I am working on Windows 2008 server.
I am trying to get the Reverse Proxy Server working on IBM HTTP server.
I have a signed cert (CMS) and have imported certs from other servers successfully.
I can setup a system using
#Proxy setup for a Jazz Foundation Server
ProxyPass /jts/ https://servername.site.ibm.com:9449/jts/
<Location>
ProxyPassReverse /jts/

IF I try others (jts01) it will not work

I have closely followed the link below and many others and seem to be getting nowhere.
https://jazz.net/wiki/bin/view/Main/ComplexCALMDeploy#Configure_IBM_HTTP_Server_IHS_In

My goal is to have

https://servername1.site.ibm.com:944x/jts/ <jts1>
https://servername2.site.ibm.com:944x/jts/ <jts2>
https://servername3.site.ibm.com:944x/jts/ <jts3>
https://servername4.site.ibm.com:944x/jts/ <jts4>

https://servername1.site.ibm.com:944x/ccm/ <ccm1>
https://servername2.site.ibm.com:944x/ccm/ <ccm2>
https://servername3.site.ibm.com:944x/ccm/ <ccm3>
https://servername4.site.ibm.com:944x/ccm/ <ccm4>

https://servername1.site.ibm.com:944x/qm/ <qm1>
https://servername2.site.ibm.com:944x/qm/ <qm2>
https://servername3.site.ibm.com:944x/qm/ <qm3>
https://servername4.site.ibm.com:944x/qm/ <qm4>

My RTC/RQM consoles all use Apache / Tomcat out of box



We have reverse proxy working with IBM HTTP server without creating custom installs. We have added the NmaeVirtualHost to the httpd.conf. Then created 10 DNS alias and added them to Reverse proxy server. Used DNS alias as the ServerName DNS_Alias.site.company.com and the ProxyPass /jts https://PhysicalServerName.site.company.com:port/jts pointed to real Physical Server Name. This allowed us to use multiple jts on a system without it just grabbing the first jts it finds. Life seems to be good again.



NameVirtualHost *:443
<VirtualHost>
ServerName DNS_Alias.site.company.com
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ProxyPass /jts https://PhysicalServerName.site.company.com:port/jts
<Location>
ProxyPassReverse /jts
</Location>

0 votes

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details

Question asked: Aug 23 '11, 7:00 p.m.

Question was seen: 5,528 times

Last updated: Aug 23 '11, 7:00 p.m.

Confirmation Cancel Confirm