0 Replies Latest reply on Oct 14, 2013 11:56 AM by jginer

    SSL between apache and JBoss

    jginer

      Hi,

      We have the next configuration:

      - one apache server with version 2.2.14.

      - two application servers with JBoss Application Server version 7.1.1 in domain mode.

       

      We configure a virtual hosts and mod_cluster discover application servers without problem, but when I add the configuration for ssl then mod_cluster cannot discover application servers.

      The file httpd-vhosts.conf is:

       

      Listen <ip>:10001

       

      MemManagerFile /var/cache/httpd

       

      <VirtualHost <ip>:10001>

       

      ErrorLog "/usr/IBMAHS/logs/error_ssl_log"

       

      TransferLog "/usr/IBMAHS/logs/access_ssl_log"

       

      SSLEngine on

       

      SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

       

      SSLCertificateFile "/usr/IBMAHS/pki/file.com.crt"

       

      SSLCertificateKeyFile "/usr/IBMAHS/pki/file.com.key"

       

      <Directory />

       

      Order deny,allow

       

      Allow from all

       

      </Directory>

       

      KeepAliveTimeout 60

       

      MaxKeepAliveRequests 0

       

      ManagerBalancerName other-server-group_d

       

      ServerAdvertise On

       

      AdvertiseFrequency 5

       

      #EnableMCPMReceive

       

      #This directive allows you to view mod_cluster status at URL http://<ip>:10001/mod_cluster-manager

       

      <Location /mod_cluster-manager>

       

      SetHandler mod_cluster-manager

       

      Order deny,allow

       

      Allow from all

       

      </Location>

       

      </VirtualHost>

       

      Can anyone help me?