Skip to content

caddy-dns/mythicbeasts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mythic Beasts module for Caddy

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

Caddy module name

dns.providers.mythicbeasts

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": "mythicbeasts",
                            "key_id": "{env.MYTHICBEASTS_KEYID}",
                            "secret": "{env.MYTHICBEASTS_SECRET}"
            		}
		}
	}
}

or with the Caddyfile:

tls {
	dns mythicbeasts {
            key_id {$MYTHICBEASTS_KEYID}
            secret {$MYTHICBEASTS_SECRET}
    }
}