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