This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Arvancloud accounts.
dns.providers.arvancloud
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": "arvancloud",
"api_key": "your_Arvancloud_api_key"
}
}
}
}or with the Caddyfile:
# globally
{
acme_dns arvancloud your_Arvancloud_api_key
}
# one site
tls {
dns arvancloud your_Arvancloud_api_key
}
Arvancloud doesn't currently allow more than 1 IP address for a single A record on the free plan. this might change in the future but for now that means the API will return an error in this case.