23 lines
567 B
Markdown
23 lines
567 B
Markdown
# 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
|