Hi
as far as I have seen it is currently only possible to provide a keystore to ssl-config.
It would be great to be able to provide paths to a certificate and private key and ssl-config generates the keystore for me. So far we do this in our code:
val ks = KeyStore.getInstance("PKCS12")
ks.load(null, null)
ks.setKeyEntry("1", privateKey, password, Seq(certificate).toArray)
what do you think?