forked from TrueCloudLab/lego
Let's Encrypt/ACME client and library written in Go
41a9384638
Using github.com/go-acme/lego/cmd/lego confuses go get. It fetches github.com/go-acme/lego@v2.7.2+incompatible (among others) and stumbles over a type error with that version. Correcting the go get path to github.com/go-acme/lego/v3/cmd/lego does the right thing. fixes #993 |
||
---|---|---|
acme | ||
certcrypto | ||
certificate | ||
challenge | ||
cmd | ||
docs | ||
e2e | ||
internal | ||
lego | ||
log | ||
platform | ||
providers | ||
registration | ||
.dockerignore | ||
.gitcookies.enc | ||
.gitignore | ||
.golangci.toml | ||
.goreleaser.yml | ||
.travis.yml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
Dockerfile | ||
go.mod | ||
go.sum | ||
LICENSE | ||
Makefile | ||
README.md |
lego
Let's Encrypt client and ACME library written in Go.
Features
- Register with CA
- Obtain certificates, both from scratch or with an existing CSR
- Renew certificates
- Revoke certificates
- Robust implementation of all ACME challenges
- HTTP (http-01)
- DNS (dns-01)
- TLS (tls-alpn-01)
- SAN certificate support
- Comes with multiple optional DNS providers
- Custom challenge solvers
- Certificate bundling
- OCSP helper function
lego introduced support for ACME v2 in v1.0.0. If you still need to utilize ACME v1, you can do so by using the v0.5.0 version.
Installation
How to install.
Usage
Documentation
Documentation is hosted live at https://go-acme.github.io/lego/.
DNS providers
Detailed documentation is available here.