This package contains a DNS provider module for Caddy. It can be used to manage DNS records with ConoHa VPS Ver.3.0.
dns.providers.conoha
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": "conoha",
"api_tenant_id": "YOUR_API_TENANT_ID",
"api_user_id": "YOUR_API_USER_ID",
"api_password": "YOUR_API_PASSWORD",
"region": "YOUR_REGION"
}
}
}
}
or with the Caddyfile:
# globally
{
acme_dns conoha {
api_tenant_id {env.API_TENANT_ID}
api_user_id {env.API_USER_ID}
api_password {env.API_PASSWORD}
region {env.REGION} # Optional.
}
}
# one site
tls {
dns conoha {
api_tenant_id {env.API_TENANT_ID}
api_user_id {env.API_USER_ID}
api_password {env.API_PASSWORD}
region {env.REGION} # Optional.
}
}
You can replace {env.API_TENANT_ID}
,{env.API_USER_ID}
, {env.API_PASSWORD}
with the actual auth token in the ""
if you prefer to put it directly in your config instead of an environment variable.
To improve DNS propagation handling, it is recommended to add the following settings to your configuration:
https://caddyserver.com/docs/caddyfile/directives/tls#acme
# Maximum time to wait for DNS record propagation before timing out.
propagation_timeout 10m
# Initial delay before checking for DNS propagation.
propagation_delay 5m
# DNS resolvers to use for propagation checks (Google IPv6 DNS and Cloudflare DNS).
resolvers 2001:4860:4860::8888 1.1.1.1
See the associated README in the libdns package for important information about credentials.