README ¶
Bunny module for Caddy
This package contains a DNS provider module for Caddy. It can be used to manage DNS records with Bunny.
Caddy module name
dns.providers.bunny
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": "bunny",
"access_key": "YOUR_BUNNY_API_KEY"
}
}
}
}
or with the Caddyfile:
# globally
{
acme_dns bunny ...
}
# one site
tls {
dns bunny ...
}
Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Provider ¶
type Provider struct{ *libdnsbunny.Provider }
Provider lets Caddy read and manipulate DNS records hosted by this DNS provider.
func (Provider) CaddyModule ¶
func (Provider) CaddyModule() caddy.ModuleInfo
CaddyModule returns the Caddy module information.
Click to show internal directories.
Click to hide internal directories.