Merge pull request #1226 from SkynetLabs/fix-caddy

fixed issue with caddy requesting new certificates
This commit is contained in:
Ivaylo Novakov 2021-09-24 13:05:17 +02:00 committed by GitHub
commit c6d9201768
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -0,0 +1 @@
- fixed issue with caddy requesting new certificates instead of using existing ones from file storage

View File

@ -3,7 +3,7 @@ FROM caddy:2.4.5-builder AS caddy-builder
# available dns resolvers: https://github.com/caddy-dns
RUN xcaddy build --with github.com/caddy-dns/route53
FROM caddy:2.4.5-builder
FROM caddy:2.4.5-alpine
COPY --from=caddy-builder /usr/bin/caddy /usr/bin/caddy

View File

@ -20,11 +20,11 @@
"issuers": [
{
"module": "acme",
"email": "{{EMAIL_ADDRESS}}",
"challenges": {
"dns": {
"provider": {
"name": "route53",
"max_retries": 100
"name": "route53"
}
}
}