Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/codex-team/check-ssl-cert-expire-date
- Owner: codex-team
- License: mit
- Created: 2017-05-26T09:23:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-16T17:43:25.000Z (almost 5 years ago)
- Last Synced: 2024-02-24T09:35:58.709Z (9 months ago)
- Topics: certificate-checker, monitoring, ssl, ssl-monitoring
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 26
- Watchers: 5
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```