nicmanager.toml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. Name = "Nicmanager"
  2. Description = ''''''
  3. URL = "https://www.nicmanager.com/"
  4. Code = "nicmanager"
  5. Since = "v4.5.0"
  6. Example = '''
  7. ## Login using email
  8. NICMANAGER_API_EMAIL = "you@example.com" \
  9. NICMANAGER_API_PASSWORD = "password" \
  10. # Optionally, if your account has TOTP enabled, set the secret here
  11. NICMANAGER_API_OTP = "long-secret" \
  12. lego --email you@example.com --dns nicmanager -d '*.example.com' -d example.com run
  13. ## Login using account name + username
  14. NICMANAGER_API_LOGIN = "myaccount" \
  15. NICMANAGER_API_USERNAME = "myuser" \
  16. NICMANAGER_API_PASSWORD = "password" \
  17. # Optionally, if your account has TOTP enabled, set the secret here
  18. NICMANAGER_API_OTP = "long-secret" \
  19. lego --email you@example.com --dns nicmanager -d '*.example.com' -d example.com run
  20. '''
  21. Additional = '''
  22. ## Description
  23. You can log in using your account name + username or using your email address.
  24. Optionally if TOTP is configured for your account, set `NICMANAGER_API_OTP`.
  25. '''
  26. [Configuration]
  27. [Configuration.Credentials]
  28. NICMANAGER_API_LOGIN = "Login, used for Username-based login"
  29. NICMANAGER_API_USERNAME = "Username, used for Username-based login"
  30. NICMANAGER_API_EMAIL = "Email-based login"
  31. NICMANAGER_API_PASSWORD = "Password, always required"
  32. [Configuration.Additional]
  33. NICMANAGER_API_OTP = "TOTP Secret (optional)"
  34. NICMANAGER_API_MODE = "mode: 'anycast' or 'zone' (default: 'anycast')"
  35. NICMANAGER_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  36. NICMANAGER_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 300)"
  37. NICMANAGER_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 900)"
  38. NICMANAGER_HTTP_TIMEOUT = "API request timeout in seconds (Default: 10)"
  39. [Links]
  40. API = "https://api.nicmanager.com/docs/v1/"