I want secure connection for my web application. So, i want to configure ssl for my wildfly 8.2.0 server. I have created and stored .keystore file in standalone/configuratio
I have configured ssl for wildfly 8.2.0.
step1: Creating keystore
cd $WILDFLY_HOME/standalone/configuration
keytool -genkey -alias localhost -keyalg RSA -keystore keystore.jks -keysize 4096
step2: Editing configuration/standalone.xml
**
**
step3: Adding listener for https by editing standalone.xml
** **
Now ssl is configured and my website is secured.