How to Show How Many Days are left in SSL Certificate from Command Line
echo | openssl s_client -connect <your server here>:443 2>/dev/null | openssl x509 -noout -dates Taken from letsencrypt community answer:
Read Moreecho | openssl s_client -connect <your server here>:443 2>/dev/null | openssl x509 -noout -dates Taken from letsencrypt community answer:
Read More