loopia.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Name = "Loopia"
  2. Description = ''''''
  3. URL = "https://loopia.com"
  4. Code = "loopia"
  5. Since = "v4.2.0"
  6. Example = '''
  7. LOOPIA_API_USER=xxxxxxxx \
  8. LOOPIA_API_PASSWORD=yyyyyyyy \
  9. lego --email you@example.com --dns loopia -d '*.example.com' -d example.com run
  10. '''
  11. Additional = '''
  12. ### API user
  13. You can [generate a new API user](https://customerzone.loopia.com/api/) from your account page.
  14. It needs to have the following permissions:
  15. * addZoneRecord
  16. * getZoneRecords
  17. * removeZoneRecord
  18. * removeSubdomain
  19. '''
  20. [Configuration]
  21. [Configuration.Credentials]
  22. LOOPIA_API_USER = "API username"
  23. LOOPIA_API_PASSWORD = "API password"
  24. [Configuration.Additional]
  25. LOOPIA_API_URL = "API endpoint. Ex: https://api.loopia.se/RPCSERV or https://api.loopia.rs/RPCSERV"
  26. LOOPIA_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2400)"
  27. LOOPIA_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  28. LOOPIA_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 300)"
  29. LOOPIA_HTTP_TIMEOUT = "API request timeout in seconds (Default: 60)"
  30. [Links]
  31. API = "https://www.loopia.com/api"