Possible Duplicate:
How to run different apps on single Tomcat instance behind different ports?
Is there a way to configure Tomcat 7 to host specific web application on alternative port?
I am aware that I can change port for connector in conf/sever.xml, but this changes listening port globally, for all webapps deployed in tomcat instance.
I cannot use transparent proxy or any other intermediate gateway to redirect request, I need to solve this using minimum additional infrastructure dependencies, so if there is a way to do this only by configuring tomcat I'd be really happy.
For example: I want webapp_1 to be accessible only from {topmcat_host}:{port1} and webapp_2 only from {topmcat_host}:{port2}
Thanks.