I have a forward facing HTTPD server that forwards certain requests via
mod_proxy to my Tomcat box that has it's own version HTTPD and jk2
running.
I actually have two instances of Jboss/Tomcat running on this machine,
bound to different IP's
Every request that is incoming to to the Jboss HTTPD server is really
just a request for Tomcat, so I want to forward all of them to it,
except that I would still like to have the jkstatus URI mapping to be
picked up my JK2.
So, in my ideal world, my workers2.properties file snipit would look
like:
[status:]
[uri:/jkstatus/*]
Group=status:
[uri:192.168.2.85/*]
channel=channel.un:${serverRoot}/sockets/jk2_dev.socket
group=devlbgroup
alias=dev
[uri:192.168.2.87/*]
channel=channel.un:${serverRoot}/sockets/jk2_stage.socket
group=stagelbgroup
alias=stage
But, in this case, jkstatus isn't being picked up JK2, but is being
forwarded to Tomcat.
So, is there a way to have a global mapping to Tomcat, except for
jkstatus?