acmedns.toml 1.1 KB

123456789101112131415161718192021222324252627282930
  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" -d '*.example.com' -d example.com run
  11. # or
  12. ACME_DNS_API_BASE=http://10.0.0.8:4443 \
  13. ACME_DNS_STORAGE_BASE_URL=http://10.10.10.10:80 \
  14. lego --email you@example.com --dns "acme-dns" -d '*.example.com' -d example.com run
  15. '''
  16. [Configuration]
  17. [Configuration.Credentials]
  18. ACME_DNS_API_BASE = "The ACME-DNS API address"
  19. 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."
  20. ACME_DNS_STORAGE_BASE_URL = "The ACME-DNS JSON account data server."
  21. [Configuration.Additional]
  22. ACME_DNS_ALLOWLIST = "Source networks using CIDR notation (multiple values should be separated with a comma)."
  23. [Links]
  24. API = "https://github.com/joohoi/acme-dns#api"
  25. GoClient = "https://github.com/nrdcg/goacmedns"