easydns.toml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. Name = "EasyDNS"
  2. Description = ''''''
  3. URL = "https://easydns.com/"
  4. Code = "easydns"
  5. Since = "v2.6.0"
  6. Example = '''
  7. EASYDNS_TOKEN=xxx \
  8. EASYDNS_KEY=yyy \
  9. lego --email you@example.com --dns easydns -d '*.example.com' -d example.com run
  10. '''
  11. Additional = '''
  12. To test with the sandbox environment set ```EASYDNS_ENDPOINT=https://sandbox.rest.easydns.net```
  13. '''
  14. [Configuration]
  15. [Configuration.Credentials]
  16. EASYDNS_TOKEN = "API Token"
  17. EASYDNS_KEY = "API Key"
  18. [Configuration.Additional]
  19. EASYDNS_ENDPOINT = "The endpoint URL of the API Server"
  20. EASYDNS_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  21. EASYDNS_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  22. EASYDNS_SEQUENCE_INTERVAL = "Time between sequential requests in seconds (Default: 60)"
  23. EASYDNS_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  24. EASYDNS_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  25. [Links]
  26. API = "https://docs.sandbox.rest.easydns.net"