1 Reply Latest reply on Sep 11, 2018 10:15 AM by claudio4j

    how to differentiate console management of instances wildfly on reverse proxy httpd

    tounsi94140

      I have two management console wildlfy and I want to access to both of them through reverse proxy. For that I did this conf in my httpd reverse proxy:

      <VirtualHost X.X.X.X:80> 
      ServerName reverse.com 
      ProxyPreserveHost On  
      ProxyPass /wildlfy1/  http://wildfly-1.com:9990/
      ProxyPass /wildlfy2/ http://wildfly-1.com:9990/
      ProxyPassReverse /wildlfy1/  http://wildfly-1.com:9990/
      ProxyPassReverse /wildlfy2/ http://wildfly-1.com:9990/

      </VirtualHost>

      my problem is that when I enter http://reverse.com/wildlfy1 or 2 it doesn't work, it's redirect me locally with revese.com/console/index.html so I don't know where is the problem.

      Thanks.