Make the --dns help message more explicit about disabling challenges
This commit is contained in:
parent
030ba6877a
commit
3bceed427a
2 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ GLOBAL OPTIONS:
|
||||||
--exclude, -x [--exclude option --exclude option] Explicitly disallow solvers by name from being used. Solvers: "http-01", "tls-sni-01".
|
--exclude, -x [--exclude option --exclude option] Explicitly disallow solvers by name from being used. Solvers: "http-01", "tls-sni-01".
|
||||||
--http Set the port and interface to use for HTTP based challenges to listen on. Supported: interface:port or :port
|
--http Set the port and interface to use for HTTP based challenges to listen on. Supported: interface:port or :port
|
||||||
--tls Set the port and interface to use for TLS based challenges to listen on. Supported: interface:port or :port
|
--tls Set the port and interface to use for TLS based challenges to listen on. Supported: interface:port or :port
|
||||||
--dns Solve a DNS challenge using the specified provider.
|
--dns Solve a DNS challenge using the specified provider. Disables all other solvers.
|
||||||
Credentials for providers have to be passed through environment variables.
|
Credentials for providers have to be passed through environment variables.
|
||||||
For a more detailed explanation of the parameters, please see the online docs.
|
For a more detailed explanation of the parameters, please see the online docs.
|
||||||
Valid providers:
|
Valid providers:
|
||||||
|
|
2
cli.go
2
cli.go
|
@ -112,7 +112,7 @@ func main() {
|
||||||
},
|
},
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "dns",
|
Name: "dns",
|
||||||
Usage: "Solve a DNS challenge using the specified provider." +
|
Usage: "Solve a DNS challenge using the specified provider. Disables all other challenges." +
|
||||||
"\n\tCredentials for providers have to be passed through environment variables." +
|
"\n\tCredentials for providers have to be passed through environment variables." +
|
||||||
"\n\tFor a more detailed explanation of the parameters, please see the online docs." +
|
"\n\tFor a more detailed explanation of the parameters, please see the online docs." +
|
||||||
"\n\tValid providers:" +
|
"\n\tValid providers:" +
|
||||||
|
|
Loading…
Reference in a new issue