do.de module for Caddy
This package contains a DNS provider module for Caddy. It can be used to manage DNS records with do.de.
dns.providers.dode
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": "dode",
"api_token": "YOUR_DODE_LETS_ENCRYPT_API_TOKEN"
}
}
}
}
or with the Caddyfile:
# globally
{
acme_dns dode YOUR_DODE_LETS_ENCRYPT_API_TOKEN
}
# one site
tls {
dns dode YOUR_DODE_LETS_ENCRYPT_API_TOKEN
}