This package contains a DNS provider module for Caddy. It can be used to manage DNS records with EasyDNS.
dns.providers.easydns
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": "easydns",
"api_token": "YOUR_PROVIDER_API_TOKEN",
"api_key": "YOUR_PROVIDER_API_KEY",
"api_url": "https://rest.easydns.net"
}
}
}
}
or with the Caddyfile:
# globally
{
acme_dns easydns {
api_token <your_api_token>
api_key <your_api_key>
api_url "https://rest.easydns.net"
}
}
# one site
tls {
dns easydns {
api_token <your_api_token>
api_key <your_api_key>
api_url "https://rest.easydns.net"
}
}