Tool to monitor SSL certificates.
sslcheck --console --host thisissoon.com
- Go 1.11+
- Dependencies managed with
go mod
These steps will describe how to setup this project for active development. Adjust paths to your desire.
- Clone the repository:
git clone github.com/thisissoon/sslcheck sslcheck
- Build:
make build
- 🍻
Dependencies are managed using go mod
(introduced in 1.11), their versions
are tracked in go.mod
.
To add a dependency:
go get url/to/origin
Configuration can be provided through a toml file, these are loaded in order from:
/etc/sslcheck/sslcheck.toml
$HOME/.config/sslcheck.toml
Alternatively a config file path can be provided through the -c/--config CLI flag.
[log]
console = true
level = "debug" # [debug|info|error]