For my own domains, they auto-renew. They will pester me through email and phone if my CC expires.
For work domains, they also auto-renew and a CSM will tell us if the root servers changed without the registrar changing anything.
For SSL:
For my own certs, I use a little script to ensure LetsEncrypt is doing it's thing. This is the manual version. (sanity check)
#!/bin/bash
set -o posix
set -u
for domain in $(cat /opt/haproxy/sslhosts.txt)
do
echo -en "\n${domain}:\t"
echo | openssl s_client -servername "${domain}" -connect "${domain}":443 2>/dev/null | openssl x509 -noout -dates | grep After
For work SSL certs, the registrar will also tell us if SSL certs are not set to auto-renew and our monitoring software will alert on certs about to expire.
[+] [-] LinuxBender|7 years ago|reply
For my own domains, they auto-renew. They will pester me through email and phone if my CC expires.
For work domains, they also auto-renew and a CSM will tell us if the root servers changed without the registrar changing anything.
For SSL:
For my own certs, I use a little script to ensure LetsEncrypt is doing it's thing. This is the manual version. (sanity check)
For work SSL certs, the registrar will also tell us if SSL certs are not set to auto-renew and our monitoring software will alert on certs about to expire.[+] [-] unknown|7 years ago|reply
[deleted]
[+] [-] deftnerd|7 years ago|reply
You can paste in a list of your domains and it'll help you organize them and send you email notifications when they're close to expiring.
[+] [-] marcc|7 years ago|reply