ispconfigddns.toml raw
1 Name = "ISPConfig 3 - Dynamic DNS (DDNS) Module"
2 Description = ''''''
3 URL = "https://www.ispconfig.org/"
4 Code = "ispconfigddns"
5 Since = "v4.31.0"
6
7 Example = '''
8 ISPCONFIG_DDNS_SERVER_URL="https://panel.example.com:8080" \
9 ISPCONFIG_DDNS_TOKEN=xxxxxx \
10 lego --dns ispconfigddns -d '*.example.com' -d example.com run
11 '''
12
13 Additional = '''
14 ISPConfig DNS provider supports leveraging the [ISPConfig 3 Dynamic DNS (DDNS) Module](https://github.com/mhofer117/ispconfig-ddns-module).
15
16 Requires the DDNS module described at https://www.ispconfig.org/ispconfig/download/
17
18 See https://www.howtoforge.com/community/threads/ispconfig-3-danymic-dns-ddns-module.87967/ for additional details.
19 '''
20
21 [Configuration]
22 [Configuration.Credentials]
23 ISPCONFIG_DDNS_SERVER_URL = "API server URL (ex: https://panel.example.com:8080)"
24 ISPCONFIG_DDNS_TOKEN = "DDNS API token"
25 [Configuration.Additional]
26 ISPCONFIG_DDNS_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
27 ISPCONFIG_DDNS_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
28 ISPCONFIG_DDNS_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 3600)"
29 ISPCONFIG_DDNS_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
30
31 [Links]
32 API = "https://github.com/mhofer117/ispconfig-ddns-module/tree/master/lib/updater"
33