Hi Naveed,
Since no one had responded with any ideas yet, I would try to throw my 1cents here.
What is the topology like, and how do you want user to access? This would make a difference in how the setup be.
One option is to look at implementing ReverseProxy on the Apache running SSL. Create virtual host, and Proxy the request to the other servers. Look at ProxyPass and ProxyPassReverse option.
I had tested on centos5.2, with apache+ssl, added the following to ssl.conf.
<VirtualHost *:443>
ServerName localhost-stokely
ProxyPass / http://www.stokely.com/
ProxyPassReverse / http://www.stokely.com/
</VirtualHost>
<VirtualHost *:443>
ServerName localhost-eskimo
ProxyPass / http://www.eskimo.com/
ProxyPassReverse / http://www.eskimo.com/
</VirtualHost>
Looks ok. Except you would be getting invalid cert warning.
Main Topics
Browse All Topics





by: naveediftPosted on 2008-08-01 at 10:56:32ID: 22140499
Experts, I am waiting for your help. Please advise me how I can use apache with SSL to also provide SSL encryption to other 2 tomcat server. It has nothing to do with apache - tomcat integration.
Any valuable suggestions/comments will earn 500 points.
Thanks
Naveed