Hi, what would be the best approach to automatically reload certificates on a running server/client? The use case is for environments where certs are refreshed pretty frequently -- once a day.
For example, in Golang, when configuring TLS is as possible to provide callbacks which are called when certificate is needed. See GetCertificate, GetClientCertificatehttps://golang.org/pkg/crypto/tls/#Config.
Hi, what would be the best approach to automatically reload certificates on a running server/client? The use case is for environments where certs are refreshed pretty frequently -- once a day.
For example, in Golang, when configuring TLS is as possible to provide callbacks which are called when certificate is needed. See
GetCertificate
,GetClientCertificate
https://golang.org/pkg/crypto/tls/#Config.