From f1240c7c60cc66aa6c479b83f40e3c948742edca Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Fri, 24 Sep 2021 01:27:03 +0200 Subject: [PATCH] drop max_retries and add email to caddy dns challenge --- changelog/items/bugs-fixed/fix-caddy.md | 1 + docker/caddy/caddy.json.template | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 changelog/items/bugs-fixed/fix-caddy.md diff --git a/changelog/items/bugs-fixed/fix-caddy.md b/changelog/items/bugs-fixed/fix-caddy.md new file mode 100644 index 00000000..83a92989 --- /dev/null +++ b/changelog/items/bugs-fixed/fix-caddy.md @@ -0,0 +1 @@ +- fixed issue with caddy requesting new certificates instead of using existing ones from file storage diff --git a/docker/caddy/caddy.json.template b/docker/caddy/caddy.json.template index de5efcbf..a133f0cd 100644 --- a/docker/caddy/caddy.json.template +++ b/docker/caddy/caddy.json.template @@ -20,11 +20,11 @@ "issuers": [ { "module": "acme", + "email": "{{EMAIL_ADDRESS}}", "challenges": { "dns": { "provider": { - "name": "route53", - "max_retries": 100 + "name": "route53" } } }