4 Replies Latest reply on May 26, 2014 5:29 AM by jeroenvds

    Mod_cluster in combination with ProxyPass for non-clustered content

    jeroenvds

      Hi,

       

      I currently have a mod_cluster cluster with Redhat EAP 6.2 nodes configured, but I would like to have a small Jetty served application to also be available using the same VirtualHost. I currently have this configuration:

       

      <VirtualHost *:8080>
       <Directory />
         Order deny,allow
         Allow from all
       </Directory>
      
       <Location /mod_cluster-manager>
         SetHandler mod_cluster-manager
         Order deny,allow
         Allow from all
       </Location>
      
       <Location /jettyapp>
         ProxyPass http://localhost:8081/jettyapp
         Order deny,allow
         Allow from all
       </Location>
      
       KeepAliveTimeout 60
       ManagerBalancerName eandiscluster
       ServerAdvertise On
       EnableMCPMReceive On
      </VirtualHost>
      

       

      However, now the clustered contexts result in a 404, while the mod_cluster-manager and jettyapp urls are available. Is there a way to have both the mod_cluster contexts available AND an extra context using ProxyPass?