A Caddy Docker container with the Porkbun DNS plugin installed
Find a file
2023-11-14 22:00:48 -07:00
.github/workflows Initial commit 2023-11-14 22:00:48 -07:00
Dockerfile Initial commit 2023-11-14 22:00:48 -07:00
README.md Initial commit 2023-11-14 22:00:48 -07:00

Caddy with Porkbun DNS Plugin

Usage

Make sure to set the PORKBUN_API_KEY and PORKBUN_API_SECRET_KEY environment variables to the corresponding values.

Then add the appropriate Caddy json config:

{
  "module": "acme",
  "challenges": {
    "dns": {
      "provider": {
        "name": "porkbun",
        "api_key": "{env.PORKBUN_API_KEY}",
	    "api_secret_key": "{env.PORKBUN_API_SECRET_KEY}"
      }
    }
  }
}

or Caddyfile equivalent:

tls {
  dns porkbun {
    api_key {env.PORKBUN_API_KEY}
	api_secret_key {env.PORKBUN_API_SECRET_KEY}
  }
}