Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/codex-team/check-ssl-cert-expire-date

Checks SSL certificates expire date and sends alerts to the Slack or Telegram when date X is coming
https://github.com/codex-team/check-ssl-cert-expire-date

certificate-checker monitoring ssl ssl-monitoring

Last synced: 12 days ago
JSON representation

Checks SSL certificates expire date and sends alerts to the Slack or Telegram when date X is coming

Awesome Lists containing this project

README

        

# SSL certs expire date checker
Python-script for checking certs life time for domains.

## Install

1. Clone this rep

2. Set up config.py

3. Build docker image

```bash
docker build --tag ssl-expiry .
```

4. Set up autorun

Edit cron
```bash
crontab -e
```

To run script at 8 am every day add this line
```bash
0 8 * * * docker run --rm -it ssl-expiry
```