Skip to content

caddy-dns/servercow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

caddy-dns/servercow

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

Caddy module name

dns.providers.servercow

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": "servercow",
        "username": "YOUR_SERVERCOW_USERNAME",
        "password": "YOUR_SERVERCOW_PASSWORD"
      }
    }
  }
}

Or with the Caddyfile:

# globally
{
    acme_dns servercow <username> <password>
}
# one site, inline credentials
tls {
    dns servercow <username> <password>
}
# one site, block form with env-var placeholders
tls {
    dns servercow {
        username {env.SERVERCOW_USERNAME}
        password {env.SERVERCOW_PASSWORD}
    }
}

Building with xcaddy

xcaddy build --with github.com/caddy-dns/servercow

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages