-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
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
tls: certificates auto renewal will become stuck if issuer is changed between config reloads #6732
Comments
Thanks for the report. I know you did in Slack, but could you share your logs here too? For the record, so as I go to fix I can ensure that the proper code paths are recreated and I fix the right problem. :) |
This is the screenshort shat shows the stuck job: The log is as
The log about The cached certificate is from |
I experience a similar issue with |
When config is reloaded with a changed acme issuer, certmagic will check for the existence of the certificate of created from the new issuer next time certificate should be issued. These certificates don't exist because we want to use them to be created in the first place. certmagic will try in vain for 30 days to renew these certificates.
Detailed explanation:
When caddy is starting, a global tls cache is created if needed
caddy/modules/caddytls/tls.go
Lines 158 to 164 in a1751ad
it will be destroyed if tls is not used anymore
caddy/modules/caddytls/tls.go
Lines 424 to 430 in a1751ad
TLS cache will start renewing certificates in the background
https://github.com/caddyserver/certmagic/blob/3fcd710c0cfc6d80026011c8ef9b0d7e94860b2b/cache.go#L127
Managed domains are updated through caddy configuration.
Eventually, renewal will be done here
https://github.com/caddyserver/certmagic/blob/3fcd710c0cfc6d80026011c8ef9b0d7e94860b2b/maintain.go#L235
TLS cache will try to renew the certificate using the latest issuer url, but first it will check the existence of the old certificate:
https://github.com/caddyserver/certmagic/blob/3fcd710c0cfc6d80026011c8ef9b0d7e94860b2b/config.go#L807-L812
It doesn't exist because the
old
certificate if from a different issuer and the path checked is from the latest issuer.This will be retried here
https://github.com/caddyserver/certmagic/blob/3fcd710c0cfc6d80026011c8ef9b0d7e94860b2b/config.go#L982
There are at least two ways to fix this: to restart caddy or remove the active caddy configuration and reload it so that caddy will realize these certificates don't exist and should be created instead.
The text was updated successfully, but these errors were encountered: