From ee63f01e0f23e62e758e6bac3ba46a125ac72367 Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Sun, 11 Aug 2024 14:33:50 +0200 Subject: [PATCH] docs: fix nomenclature (provider -> handler) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3441e59..7b2aaf7 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ certificates = [ [domains] "ptrc.gay" = "hetzner" "porkbunned.example" = "porkbun" -"yet.another.domain.tld" = { provider = "hetzner", secret = "this_is_a_different_secret" } +"yet.another.domain.tld" = { handler = "hetzner", secret = "this_is_a_different_secret" } [secrets] hetzner = "your_secret_goes_here" @@ -40,11 +40,11 @@ porkbun = { apikey = "owo", secretapikey = "uwu" } configuration options: - `post_acquire` - list of commands to be ran after a new certificate is acquired - `certificates` - list of CNs for the desired certificates (note: `*.domain.tld` also adds a `domain.tld` CN) -- `domains` - dict of domains and their respective providers (note: it is expected that a domain is also the root of the zone) -- `secrets` - dict of secrets to be used by providers; *usually* with the same name as provider itself +- `domains` - dict of domains and their respective handlers (note: it is expected that a domain is also the root of the zone) +- `secrets` - dict of secrets to be used by handlers; *usually* with the same name as handler itself - `acme_path` - string, path to your `.well-known/acme-challenge/` -currently implemented providers: +currently implemented handlers: - `cloudflare` - `hetzner` - `http`