I'm using ktor also as a client to connect to a ht...
# ktor
a
I'm using ktor also as a client to connect to a https API with self-signed certificate, and I was wandering if there was any way to validate the requests knowing the other end has self-signed cert (skipping CA)
e
Hi @Alan Pierri, what engine do you use?
a
Hi! I'm using the default engine
But I might migrate to Apache
e
You could configure certificate stuff with
SSLContext
in
Apache
🙂
🙂 1
a
Great! Any docs on Apache engine configuration? (besides the sample config on ktor.io)
If you happen to know one already, if not I'll investigate. You've been very helpful!
e
And use
customizeClient
in engine configuration to set
sslContext
👍 1
a
Thanks!