acmedns.toml 732 B

123456789101112131415161718192021
  1. Name = "Joohoi's ACME-DNS"
  2. Description = ''''''
  3. URL = "https://github.com/joohoi/acme-dns"
  4. Code = "acme-dns"
  5. Aliases = ["acmedns"] # TODO(ldez): remove "-" in v5
  6. Since = "v1.1.0"
  7. Example = '''
  8. ACME_DNS_API_BASE=http://10.0.0.8:4443 \
  9. ACME_DNS_STORAGE_PATH=/root/.lego-acme-dns-accounts.json \
  10. lego --email you@example.com --dns acme-dns --domains my.example.org run
  11. '''
  12. [Configuration]
  13. [Configuration.Credentials]
  14. ACME_DNS_API_BASE = "The ACME-DNS API address"
  15. ACME_DNS_STORAGE_PATH = "The ACME-DNS JSON account data file. A per-domain account will be registered/persisted to this file and used for TXT updates."
  16. [Links]
  17. API = "https://github.com/joohoi/acme-dns#api"
  18. GoClient = "https://github.com/cpu/goacmedns"