Keeping TLS certificates boring
7/5/26Less than 1 minute
TLS certificates should be quiet infrastructure. They only become interesting when renewal fails.
Check DNS first
Before issuing a certificate, confirm the domain points to the expected host:
dig example.com AIf DNS is wrong, the ACME challenge will usually fail.
Verify from the outside
openssl s_client -connect example.com:443 -servername example.comI check the subject, issuer, and expiration date after every certificate change.
Remember reloads
Renewal is not enough. The process serving TLS also needs to load the renewed certificate files.