mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
Add DNS provider for Hostinger (#2651)
This commit is contained in:
parent
bf0e89cdd9
commit
f432d2141e
18 changed files with 949 additions and 26 deletions
21
cmd/zz_gen_cmd_dnshelp.go
generated
21
cmd/zz_gen_cmd_dnshelp.go
generated
|
|
@ -77,6 +77,7 @@ func allDNSCodes() string {
|
|||
"googledomains",
|
||||
"hetzner",
|
||||
"hostingde",
|
||||
"hostinger",
|
||||
"hosttech",
|
||||
"httpnet",
|
||||
"httpreq",
|
||||
|
|
@ -1559,6 +1560,26 @@ func displayDNSHelp(w io.Writer, name string) error {
|
|||
ew.writeln()
|
||||
ew.writeln(`More information: https://go-acme.github.io/lego/dns/hostingde`)
|
||||
|
||||
case "hostinger":
|
||||
// generated from: providers/dns/hostinger/hostinger.toml
|
||||
ew.writeln(`Configuration for Hostinger.`)
|
||||
ew.writeln(`Code: 'hostinger'`)
|
||||
ew.writeln(`Since: 'v4.27.0'`)
|
||||
ew.writeln()
|
||||
|
||||
ew.writeln(`Credentials:`)
|
||||
ew.writeln(` - "HOSTINGER_API_TOKEN": API Token`)
|
||||
ew.writeln()
|
||||
|
||||
ew.writeln(`Additional Configuration:`)
|
||||
ew.writeln(` - "HOSTINGER_HTTP_TIMEOUT": API request timeout in seconds (Default: 30)`)
|
||||
ew.writeln(` - "HOSTINGER_POLLING_INTERVAL": Time between DNS propagation check in seconds (Default: 2)`)
|
||||
ew.writeln(` - "HOSTINGER_PROPAGATION_TIMEOUT": Maximum waiting time for DNS propagation in seconds (Default: 60)`)
|
||||
ew.writeln(` - "HOSTINGER_TTL": The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)`)
|
||||
|
||||
ew.writeln()
|
||||
ew.writeln(`More information: https://go-acme.github.io/lego/dns/hostinger`)
|
||||
|
||||
case "hosttech":
|
||||
// generated from: providers/dns/hosttech/hosttech.toml
|
||||
ew.writeln(`Configuration for Hosttech.`)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue