I have JBoss clustring in use with Apache mod_cluster clustering. The modcluster configuration is the basic:
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule slotmem_module modules/mod_slotmem.so
LoadModule manager_module modules/mod_manager.so
LoadModule proxy_cluster_module modules/mod_proxy_cluster.so
LoadModule advertise_module modules/mod_advertise.so
Listen 10.33.144.3:6666
<VirtualHost 10.33.144.3:6666>
<Directory />
Order deny,allow
Deny from all
Allow from 10.33.144.
</Directory>
KeepAliveTimeout 60
MaxKeepAliveRequests 0
ManagerBalancerName mycluster
AdvertiseFrequency 5
</VirtualHost>
Now I have a folder (/documentation) in ServerRoot containing html files I would like to serve through Apache instead JBoss. How is it possible to configure this specific folder to be outside the mod_cluster forwarding? Now when I try to access the /documentation folder I am directed to one of the JBoss nodes instead apache. Thanks!