acmedns.toml 679 B

1234567891011121314151617181920
  1. Name = "Joohoi's ACME-DNS"
  2. Description = ''''''
  3. URL = "https://github.com/joohoi/acme-dns"
  4. Code = "acme-dns"
  5. Since = "v1.1.0"
  6. Example = '''
  7. ACME_DNS_API_BASE=http://10.0.0.8:4443 \
  8. ACME_DNS_STORAGE_PATH=/root/.lego-acme-dns-accounts.json \
  9. lego --email you@example.com --dns acme-dns --domains my.example.org run
  10. '''
  11. [Configuration]
  12. [Configuration.Credentials]
  13. ACME_DNS_API_BASE = "The ACME-DNS API address"
  14. 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."
  15. [Links]
  16. API = "https://github.com/joohoi/acme-dns#api"
  17. GoClient = "https://github.com/cpu/goacmedns"