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
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
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>