I would like to know the correct way to configure SSL protocol on wildfly.
Looking at the examples, I found two different ways to do this. I want to know which one is the right way -
Adding it to the protocol section as shown below:
<security-realm name="sslRealm"> <server-identities> <ssl protocol="TLSv1.2">
Or add it to your https listener as shown below:
<https-listener name="https" socket-binding="https" security- realm="sslRealm" enabled-protocols="TLSv1.2"/>
I am using wildfly.8.2.0.Final.
source share