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