From 37a3dde42620263b78934407bf9fa544f0490078 Mon Sep 17 00:00:00 2001 From: PhilippKolmann <156899705+PhilippKolmann@users.noreply.github.com> Date: Mon, 11 Mar 2024 11:39:57 +0100 Subject: [PATCH] Update acme_eab in options.md I wanted to use ACME_EAB in global config but failed to do so with the config. After investigating in the source, I saw that it's configured differently to the acme issuer eab config block. --- src/docs/markdown/caddyfile/options.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/docs/markdown/caddyfile/options.md b/src/docs/markdown/caddyfile/options.md index fec38c8..75aef22 100644 --- a/src/docs/markdown/caddyfile/options.md +++ b/src/docs/markdown/caddyfile/options.md @@ -86,7 +86,10 @@ Possible options are (click on each option to jump to its documentation): skip_install_trust acme_ca acme_ca_root - acme_eab + acme_eab { + key_id + mac_key + } acme_dns ... on_demand_tls { ask @@ -517,7 +520,10 @@ For example, with mock ZeroSSL credentials: ```caddy { - acme_eab GD-VvWydSVFuss_GhBwYQQ MjXU3MH-Z0WQ7piMAnVsCpD1shgMiWx6ggPWiTmydgUaj7dWWWfQfA + acme_eab { + key_id GD-VvWydSVFuss_GhBwYQQ + mac_key MjXU3MH-Z0WQ7piMAnVsCpD1shgMiWx6ggPWiTmydgUaj7dWWWfQfA + } } ```