1
0
mirror of https://github.com/go-acme/lego.git synced 2025-12-23 23:12:22 +02:00
Files
lego/docs/content/dns/zz_gen_ispconfigddns.md
Simon Merschjohann 8b327005b3 Add DNS Provider for ISPConfig (DDNS Module) (#2760)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
2025-12-22 03:50:29 +01:00

2.5 KiB
Generated

title, date, draft, slug, dnsprovider
title date draft slug dnsprovider
ISPConfig 3 - Dynamic DNS (DDNS) Module 2019-03-03T16:39:46+01:00 false ispconfigddns
since code url
v4.31.0 ispconfigddns https://www.ispconfig.org/

Configuration for ISPConfig 3 - Dynamic DNS (DDNS) Module.

  • Code: ispconfigddns
  • Since: v4.31.0

Here is an example bash command using the ISPConfig 3 - Dynamic DNS (DDNS) Module provider:

ISPCONFIG_DDNS_SERVER_URL="https://panel.example.com:8080" \
ISPCONFIG_DDNS_TOKEN=xxxxxx \
lego --email you@example.com --dns ispconfigddns -d '*.example.com' -d example.com run

Credentials

Environment Variable Name Description
ISPCONFIG_DDNS_SERVER_URL API server URL (ex: https://panel.example.com:8080)
ISPCONFIG_DDNS_TOKEN DDNS API token

The environment variable names can be suffixed by _FILE to reference a file instead of a value. More information [here]({{% ref "dns#configuration-and-credentials" %}}).

Additional Configuration

Environment Variable Name Description
ISPCONFIG_DDNS_HTTP_TIMEOUT API request timeout in seconds (Default: 30)
ISPCONFIG_DDNS_POLLING_INTERVAL Time between DNS propagation check in seconds (Default: 2)
ISPCONFIG_DDNS_PROPAGATION_TIMEOUT Maximum waiting time for DNS propagation in seconds (Default: 60)
ISPCONFIG_DDNS_TTL The TTL of the TXT record used for the DNS challenge in seconds (Default: 3600)

The environment variable names can be suffixed by _FILE to reference a file instead of a value. More information [here]({{% ref "dns#configuration-and-credentials" %}}).

ISPConfig DNS provider supports leveraging the ISPConfig 3 Dynamic DNS (DDNS) Module.

Requires the DDNS module described at https://www.ispconfig.org/ispconfig/download/

See https://www.howtoforge.com/community/threads/ispconfig-3-danymic-dns-ddns-module.87967/ for additional details.

More information