We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Akka HTTP docs we have https://doc.akka.io/docs/akka-http/current/server-side/server-https-support.html#rotating-certificates showing how to create a HttpsConnectionContext with cert rotation but it might not be obvious how to find and set that up. We should either link to that from the mTLS docs page or show an example here as well.
HttpsConnectionContext
The text was updated successfully, but these errors were encountered:
This isn't only about docs. Something is missing for a client with rotating certs. We have:
GrpcClientSettings .connectToServiceAt(host, port) .withSslContext(sslContext)
That sslContext instance is reading the certs when created, so it will not be refreshed for new connections.
We are missing something like:
withRefreshingSslContext(creator: () => SSLContext)
that can be used together with SSLContextFactory.refreshingSSLContextProvider.
SSLContextFactory.refreshingSSLContextProvider
(how to implement this is a more difficult question)
Sorry, something went wrong.
No branches or pull requests
In the Akka HTTP docs we have https://doc.akka.io/docs/akka-http/current/server-side/server-https-support.html#rotating-certificates showing how to create a
HttpsConnectionContext
with cert rotation but it might not be obvious how to find and set that up. We should either link to that from the mTLS docs page or show an example here as well.The text was updated successfully, but these errors were encountered: