Skip to content
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

Check Let's Encrypt certificates #49

Open
fbocolowski opened this issue Apr 14, 2019 · 0 comments
Open

Check Let's Encrypt certificates #49

fbocolowski opened this issue Apr 14, 2019 · 0 comments
Labels
enhancement New feature or request

Comments

@fbocolowski
Copy link
Owner

Here's the bash snippet:

LETSENCRYPT_CERTS=("mydomain.com")
    for CERT in "${LETSENCRYPT_CERTS[@]}"; do
      CERT_STATUS=`ssl-cert-check -c /etc/letsencrypt/live/$CERT/cert.pem | tail -n+4 | awk {'print $6'}`
      echo "  $CERT"
      if [ $CERT_STATUS -le "1" ]; then
        echo "  CERTIFICATE NEEDS RENEWAL!"
        slack "SSL certificate for $CERT needs renewal!"
      else
        echo "  CERTIFICATE OK!"
      fi
    done
@fbocolowski fbocolowski changed the title Add Let's Encrypt alert from server Check Let's Encrypt certificates Jun 24, 2019
@fbocolowski fbocolowski added the enhancement New feature or request label Sep 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant