up vote 1 down vote favorite
share [g+] share [fb]

It's not as simple as it looks.

I've been given the task to add a third tomcat to a server that already has two Tomcats working.

Problem is, this third Tomcat needs to be secure, and the port needs to be hidden. Since Tomcat 1 is currently using port 433 (secure) and Tomcat 2 is using port 80, my third tomcat is out of widely accepted non-showing ports.

How can I hide the port? Proxies? Virtual Hosts? I NEED it to be separated from the other two. Any suggestion is highly welcomed.

link|improve this question
You are likely to get a better answer at serverfault.com. – Sripathi Krishnan Sep 7 '10 at 18:32
You do not understand what a port is. – Rook Sep 7 '10 at 19:13
feedback

2 Answers

If you bind your new tomcat to a different domain name and IP, you can still use ports 80 and/or 443.

link|improve this answer
feedback

That is how the browsers work. They assume port 80 for http unless you specify a different port. If you specify different port, then the port number must be specified in the url.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.