I need to define a custom SSL configuration in server.xml and use it as default in my openliberty server.
What is the impact of defining sslDefault in server.xml config.
Will this override the JVM default and all third party libraries will transparent use this sslDefault ?
Or we need to get the SSL config using SSLContext sslContext = JSSEHelper.getInstance().getSSLContext("defaultSSLConfig", Collections.emptyMap(), null)
(like presented in https://openliberty.io/docs/latest/access-nosql-databases.html) and inject it in these libraries.
Any best practices to share ?