1
0
mirror of https://github.com/go-acme/lego.git synced 2025-07-02 13:56:55 +02:00

Add optional support for .pem output (.crt + .key)

This commit is contained in:
Joshua Boelter
2016-06-18 22:55:15 -07:00
parent b2fad61981
commit 941e753c80
2 changed files with 17 additions and 0 deletions

4
cli.go
View File

@ -158,6 +158,10 @@ func main() {
Name: "dns-timeout",
Usage: "Set the DNS timeout value to a specific value in seconds. The default is 10 seconds.",
},
cli.BoolFlag{
Name: "pem",
Usage: "Generate a .pem file by concatanating the .key and .crt files together.",
},
}
err = app.Run(os.Args)