caddy-dns / dode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

do.de module for Caddy

This package contains a DNS provider module for Caddy. It can be used to manage DNS records with do.de.

Caddy module name

dns.providers.dode

Config examples

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": "dode",
				"api_token": "YOUR_DODE_LETS_ENCRYPT_API_TOKEN"
			}
		}
	}
}

or with the Caddyfile:

# globally
{
	acme_dns dode YOUR_DODE_LETS_ENCRYPT_API_TOKEN
}
# one site
tls {
	dns dode YOUR_DODE_LETS_ENCRYPT_API_TOKEN
}

About

License:MIT License


Languages

Language:Go 100.0%