easydns.toml raw

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