It's all about the answers!

Ask a question

Jazz Reverse Proxy Server


Chris Chinchiolo (8621816) | asked Aug 23 '11, 7:00 p.m.
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

One answer



permanent link
Chris Chinchiolo (8621816) | answered Aug 30 '11, 7:28 p.m.
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>

Your answer


Register or 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.