Hello everybody
I have 3 websites running on IIS with Isapi Connector pointing to 3
different Tomcat hosts.
I have defined my uriworkermap rules and everything is working.
I would like to have a directory in my websites pointing to a single
worker.
That is:
site-AAA/page.jsp -> site-AAA:8080/page.jsp
site-BBB/page.jsp -> site-BBB:8080/page.jsp
site-AAA/dir/ -> site-AAA:8080/dir/
site-BBB/dir/ -> site-AAA:8080/dir/
How can I do that ?
These are my configuration files:
#############################################
# uriworkermap.properties
/*.jsp=worker1
/en.agriturismo.it/*.jsp=workerEN
#############################################
#############################################
# workers.properties
# my workers
worker.list=worker1,workerEN
# italian, worker1 (ajp13)
worker.worker1.type=ajp13
worker.worker1.host=localhost
worker.worker1.port=8009
# english, workerEN (ajp13)
worker.workerEN.type=ajp13
worker.workerEN.host=en.agriturismo.it
worker.workerEN.port=8009
#############################################
Thanks
marco