我们希望强制所有入站和出站连接使用TLSv1.2协议。我想了解web子系统->连接器->ssl协议中的配置是否对入站和出站连接都有效
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>
<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">
<ssl name="https" key-alias="jbossfuse" password="password" protocol="TLSv1.2" certificate-key-file="C:/Temp/truststore/jbossfuse-dev.jks"/>
</connector>
<virtual-server name="default-host" enable-welcome-root="false">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
</subsystem>发布于 2018-10-17 19:12:23
您必须在tag中使用以下配置为安全领域配置启用TLSv1.2的协议。
<server-identities>
<ssl>
<engine enabled-protocols="TLSv1.1 TLSv1.2" />
<keystore ... />
</ssl>
....
</server-identities>https://stackoverflow.com/questions/52840883
复制相似问题