Information
If there are no specific SSL/TLS configurations configured for outbound TLS connections the common TLS configurations are used by both the inbound and outbound connections.
Configure additional TLS configuration elements for outbound connections with listed hostnames and ports allows to separate the TLS connection configurations for outbound calls for more fine grain control.
Solution
Add the outboundSSLRef attribute to the sslDefault elements to ${server.config.dir}/configDropins/overrides/*.xml and set the value to a valid ssl configuration id.
<sslDefault outboundSSLRef="alternateSSLSettings" />
Also add host and port attributes on the outboundConnection elements for all ssl elements used for outbound requests to ${server.config.dir}/configDropins/overrides/*.xml and set the values to hosts and ports used by the application or server.
<ssl id="alternateSSLSettings" ...
<outboundConnection host="hostname1" port="020" />
<outboundConnection host="hostname2" port="9020" />
</ssl>