Zoneedit module for Caddy
This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Zoneedit.
Caddy module name
dns.providers.zoneedit
Config examples
To use this module for the ACME DNS challenge, configure the ACME issuer in your Caddy JSON like so:
{
"module": "acme",
"challenges": {
"dns": {
"provider": {
"name": "zoneedit",
"user": "YOUR_ZONEEDIT_USER",
"auth_token": "YOUR_ZONEEDIT_AUTH_TOKEN"
}
}
}
}
or with the Caddyfile:
# globally
{
acme_dns zoneedit <user> <auth_token>
}
# one site
tls {
dns zoneedit <user> <auth_token>
}
Authentication
Zoneedit requires a username and an authentication token. You can find your authentication token in the Zoneedit control panel under the "DYN" or "Dynamic DNS" settings for your domain.
Caveats
Zoneedit's API has a rate limit of one request per 10 seconds. This module automatically sleeps for 11 seconds after each creation or deletion of a record to comply with this limit. This will make the DNS challenge process take longer than with other providers.