This package contains a DNS provider module for Caddy. It can be used to manage DNS records with INWX.
dns.providers.inwx
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": "inwx",
"username": "INWX_USERNAME",
"password": "INWX_PASSWORD",
"shared_secret": "INWX_SHARED_SECRET",
"endpoint_url": "INWX_ENDPOINT_URL"
}
}
}
}
or with the Caddyfile:
# globally
{
acme_dns inwx {
username <username>
password <password>
shared_secret <shared_secret>
endpoint_url <endpoint_url>
}
}
# one site
tls {
dns inwx {
username <username>
password <password>
shared_secret <shared_secret>
endpoint_url <endpoint_url>
}
}
If you don’t provide an endpoint_url
the URL of the production environment (https://api.domrobot.com/jsonrpc/) is used by default. If you want to use the test environment, set endpoint_url
to https://api.ote.domrobot.com/jsonrpc/.
For more information on the configuration, see libdns/inwx.