Hi,
our certificate provider had to revoke a bunch of certificates over the weekend. They informed that ACME renewal information (ARI) is in use and clients that support the extension should renew certificates automatically.
However, none of our caddy servers did that. I checked the renewal information for one certificate (manually constructed the link) and it showed this:
{
"suggestedWindow": {
"start": "2026-07-16T00:00:00Z",
"end": "2026-07-19T23:59:59Z"
}
}
This is our Caddyfile (sensitive information stripped):
# Caddyfile
{
email EMAIL
acme_ca https://acme/account/directory
acme_eab {
key_id KEY
mac_key MAC
}
log {
level debug
}
}
server.example.com {
bind public_ipv4
reverse_proxy 127.0.0.1:8080
encode gzip zstd
}
Greatful for any hints on why things did not work as expected.