1 Reply Latest reply on Mar 5, 2013 3:06 PM by rhusar

    SSL between httpd and Browser

    jacktrades

      When using mod_cluster with Jboss, how to establish SSL between httpd and client Browser?

       

      Doing this and it's not working:

       

      Listen 10.210.38.176:6666

      <VirtualHost 10.210.38.176:6666>

       

       

        <Directory />

          Order deny,allow

          Deny from all

          Allow from 10.210.38.

        </Directory>

       

       

        KeepAliveTimeout 60

        MaxKeepAliveRequests 0

       

       

        ManagerBalancerName mycluster

        AdvertiseFrequency 5

        EnableMCPMReceive

       

       

        SSLEngine on

        SSLCipherSuite AES128-SHA:ALL:!ADH:!LOW:!MD5:!SSLV2:!NULL

        SSLCertificateFile /var/www/html/key/server.crt

        SSLCertificateKeyFile /var/www/html/key/server.key

       

       

      </VirtualHost>

        • 1. Re: SSL between httpd and Browser
          rhusar

          Look more closely at what you are configuring: you are configuring a virtual host at port :6666, but the HTTP client (browser) is communicating with port :443. In this configuration you provided, you are enabling SSL for communication between AS and load-balancer.

           

          You need to configure SSL on virtualhost on port 443 that the client talks to. Pretty much the same configration as done here. Checkout some advanced config here: http://httpd.apache.org/docs/2.2/ssl/