Hi,
I have an apache instance fronting 4 tomcat webapps, lets call them app1, app2, app3, app4. I'm using mod_jk to act as the connector and I've set up apache with JKMount entries for each and I can happily hit:
server:8080/app1
server:8080/app2
server:8080/app3
server:8080/app4
But what i actually want is to have all the traffic for app1, app2 and app3 be addressed as above, but with app4 (only) addressed on:
server:8080/
I was sure this was going to be easy, but i can't figure it out. Any ideas?
Gordon