Add DNS provider for Hostinger (#2651)

This commit is contained in:
Ludovic Fernandez 2025-09-22 17:56:19 +02:00 committed by GitHub
commit f432d2141e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 949 additions and 26 deletions

View file

@ -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.`)