1
0
mirror of https://github.com/go-acme/lego.git synced 2025-07-02 05:54:28 +02:00

TLS-ALPN-01 Challenge (#572)

* feat: implemented TLS-ALPN-01 challenge
This commit is contained in:
Wyatt Johnson
2018-06-13 23:20:56 +00:00
committed by Ludovic Fernandez
parent c4bbb4b819
commit d457f70ae0
11 changed files with 326 additions and 15 deletions

6
cli.go
View File

@ -137,7 +137,7 @@ func main() {
},
cli.StringSliceFlag{
Name: "exclude, x",
Usage: "Explicitly disallow solvers by name from being used. Solvers: \"http-01\", \"dns-01\".",
Usage: "Explicitly disallow solvers by name from being used. Solvers: \"http-01\", \"dns-01\", \"tls-alpn-01\".",
},
cli.StringFlag{
Name: "webroot",
@ -151,6 +151,10 @@ func main() {
Name: "http",
Usage: "Set the port and interface to use for HTTP based challenges to listen on. Supported: interface:port or :port",
},
cli.StringFlag{
Name: "tls",
Usage: "Set the port and interface to use for TLS based challenges to listen on. Supported: interface:port or :port",
},
cli.StringFlag{
Name: "dns",
Usage: "Solve a DNS challenge using the specified provider. Disables all other challenges. Run 'lego dnshelp' for help on usage.",