This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Wedos.
dns.providers.wedos
To build Caddy with this module, use the following command:
xcaddy build --with github.com/caddyserver/dnsproviders/wedos
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": "wedos",
"username": "{env.WEDOS_USERNAME}",
"password": "{env.WEDOS_PASSWORD}"
}
}
}
}or with the Caddyfile:
# globally
{
acme_dns wedos {
# username "YOUR_WEDOS_USERNAME"
# password "YOUR_WEDOS_PASSWORD"
# OR
username {$WEDOS_USERNAME}
password {$WEDOS_PASSWORD}
}
}
# Replace 'example.com' with a domain you own and want to manage via Wedos
example.com {
respond "Hello, Caddy with Wedos!"
}