Dump ACME data from Traefik to certificates
| .gitignore | ||
| .golangci.toml | ||
| .goreleaser.yml | ||
| .travis.yml | ||
| dumper.go | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| main.go | ||
| Makefile | ||
| readme.md | ||
| version.go | ||
traefik-certs-dumper
Dump the content of the "acme.json" file from Traefik to certificates.
Usage:
traefik-certs-dumper [command]
Available Commands:
dump Dump Let's Encrypt certificates from Traefik
help Help about any command
version Display version
Flags:
-h, --help help for certs-dumper
--version version for certs-dumper
Use "traefik-certs-dumper [command] --help" for more information about a command.
Dump the content of the "acme.json" file from Traefik to certificates.
Usage:
traefik-certs-dumper dump [flags]
Flags:
--crt-ext string The file extension of the generated certificates. (default ".crt")
--dest string Path to store the dump content. (default "./dump")
-h, --help help for dump
--key-ext string The file extension of the generated private keys. (default ".key")
--source string Path to 'acme.json' file. (default "./acme.json")
--use-subdir Use separated directories for certificates and keys. (default true)
Examples
traefik-certs-dumper dump
traefik-certs-dumper dump --source ./acme.json --dest ./dump
traefik-certs-dumper dump --crt-ext=.pem --key-ext=.pem
traefik-certs-dumper dump --use-subdir=false