This content has been marked as final.
Show 4 replies
-
1. Re: How to disable TLSv1.1 and TLSv1.0
hemanthchadaram Feb 24, 2018 2:06 AM (in response to prabhakar12)1 of 1 people found this helpfulDisable TLSv1.0 and TLSv1.1
The Wildfly Undertow subsystem support
enabled-protocols
attribute, which is a comma separated list of protocols to be supported. For exampleenabled-protocols="TLSv1.1,TLSv1.2"
. We will just enableTLSv1.2
.============================================================================================
<subsystem xmlns="urn:jboss:domain:undertow:1.2">
<server name="default-server">
<https-listener name="default-https" socket-binding="https"
security-realm="SSLRealm"
enabled-protocols="TLSv1.2"/>
</server>
</subsystem>
-
2. Re: How to disable TLSv1.1 and TLSv1.0
akonakon Dec 6, 2019 3:02 AM (in response to hemanthchadaram)which file we need to change, i mean which file the above change contains to be done , is it standalone.xml
-
3. Re: How to disable TLSv1.1 and TLSv1.0
ctomc Dec 9, 2019 2:11 PM (in response to akonakon)it is always standalone.xml or any other standalone*.xml file you might be using to run your server.