This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Regery.
dns.providers.regery
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": "regery",
"api_token": "YOUR_API_TOKEN",
"secret": "YOUR_API_SECRET"
}
}
}
}or with the Caddyfile:
# globally
{
acme_dns regery {
api_token YOUR_API_TOKEN
secret YOUR_API_SECRET
}
}
# one site
tls {
dns regery {
api_token YOUR_API TOKEN
secret YOUR_API_SECRET
}
}