You can do this with the JkUnMount directive:
| JkMount /* loadbalancer
| JkUnMount /images/* loadbalancer
Generally I prefer to use the technique the wiki page mentions of externalizing this in a
separate file.
mod_jk.conf
JkMountFile conf/uriworkermap.properties
uriworkermap.properties
| /*=loadbalancer
| !/images/*=loadbalancer
|
I've updated
http://www.jboss.org/community/docs/DOC-12525 to include that.
For full details on all the possibilities, see the "Assigning URLs to Tomcat"
section on
http://tomcat.apache.org/connectors-doc/reference/apache.html
There's no need to create a server/nodeX for each node.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4203071#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...