1 Reply Latest reply on Oct 30, 2017 9:07 AM by mchoma

    Wildfly 8.1.0 Final SSL Configuration

    mahesh.mali

      Hello,

      I was trying to configure SSL in Wildfly 8.1.0 Final.

      These are the steps I followed.

      1) Created a keystore file named ncm.keystore

      2) Placed this keystore file in standalone/configuration directory

      3) then added the following in standalone.xml

       

          

      <server-identities>

           <ssl>

             <keystore path="C:/Users/harsharadhya.bk/Desktop/wildfly-8.1.0.Final/standalone/configuration" relative-to="jboss.server.config.dir" keystore-password="123456" alias="ncm" key-password="123456"/>

           </ssl>

      </server-identities>

       

       

      After this when try to run an application on server the URL is getting redirected to the https port specified i.e, from 8080 to 8443; but I'm unable to run the application.