Initial template: TLS cert expiry checker

This commit is contained in:
gergo
2026-01-23 13:55:37 +01:00
commit 5cdb29c667
5 changed files with 278 additions and 0 deletions

22
README.md Normal file
View File

@@ -0,0 +1,22 @@
# TLS Cert Expiry Check (Template)
Minimal, POSIX-friendly TLS certificate expiry checker using `openssl s_client`.
## What this is
- `git clone && run` template repo
- No real domains/emails/credentials committed
- Example configs included
- Easy to integrate into cron / CI / monitoring
## Repo structure
```text
cert-expiry-check-template/
├── bin/
│ └── cert-expiry-check.sh
├── config/
│ ├── domains.example.txt
│ ├── cert-expiry.conf.example
│ └── msmtprc.example
├── .gitignore
└── README.md