Posts

Showing posts from June, 2016

How to configure SSL in WildFly 10 standalone mode

Image
How to configure SSL in WildFly 10 standalone mode and change default ssl port to 443? Important: From WildFly 8 onwards Web subsystem is replaced by Undertow subsystem.  You can use any profile listed below. 1) standalone.xml 2) standalone-full.xml 3) standalone-full-ha.xml 4) standalone-ha.xml NOTE: Just for demo purpose I am using selfsigned ssl certificates you can configure CA signed certificates in the same way. Step1: open standalone.xml  Now under management option create custom security-realm with any name you want I have given "SslRelam as shown below: <security-realm name="SslRealm"> <server-identities> <ssl> <keystore path="F:\NCM_PROD_SETUP\wildfly-10.0.0.CR5\standalone\configuration\ssl_cert\ncm.keystore" alias="ncm" keystore-password="123456" /> </ssl> </server-identities> </security-realm> Step2: Under profile option expand undertow subsystem there a...