0 Replies Latest reply on Mar 2, 2014 1:51 PM by shruti-p

    Implementing SSL security for JBOSS

    shruti-p

      I am trying to switch my web interface from http to https for my ruby on rails web app. I did the following

      1. Generated a certificate signing request locally 

      2. Obtained a keystore file 

      3. Obtained an SSL certificate from a CA 

      4. Imported this certificate into the keystore obtained in step 2. 

      5. Configured rails to use SSL 

      6. Configured a new https connector in jboss in the following way  

          <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/
          <connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true"
              <ssl name="https" key-alias="myalias" password="foobar" certificate-key-   file="/tmp/keystore"/
          </connector  
      

      7. Changed https port to port 80.

       

       

      But when I load the application, I am not able to view the web application.

      Note: There are no errors in the jboss logs