Reputation: 23666
In TomCat, is it possible to run a single instance of an app on two different arbitrary ports (e.g. 8445, 8446)?
Upvotes: 0
Views: 49
Reputation: 3627
You can put in multiple <Connector>
elements. See the docs on the HTTP connector. Also, you can copy the existing Connector and just modify the port number.
Upvotes: 1