tomcat different context path of one webapp based on domain

113 views Asked by At

I've got one web application, and I want it to be hosted on two different context paths. There is no problem with that

<Context docBase="myapp" path="/address1" />
<Context docBase="myapp" path="/address2" />

But I want it to be based on domains, for example:

  • /address1 for localhost1
  • /address2 for localhost2

Also I want this application to be hosted in single instance (not one for /address1 and another for /address2 ).

0

There are 0 answers