dnspod.toml 854 B

12345678910111213141516171819202122232425
  1. Name = "DNSPod (deprecated)"
  2. Description = '''
  3. Use the Tencent Cloud provider instead.
  4. '''
  5. URL = "https://www.dnspod.com/"
  6. Code = "dnspod"
  7. Since = "v0.4.0"
  8. Example = '''
  9. DNSPOD_API_KEY=xxxxxx \
  10. lego --email you@example.com --dns dnspod -d '*.example.com' -d example.com run
  11. '''
  12. [Configuration]
  13. [Configuration.Credentials]
  14. DNSPOD_API_KEY = "The user token"
  15. [Configuration.Additional]
  16. DNSPOD_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  17. DNSPOD_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  18. DNSPOD_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 600)"
  19. DNSPOD_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  20. [Links]
  21. API = "https://docs.dnspod.com/api/"
  22. GoClient = "https://github.com/nrdcg/dnspod-go"