Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 8208685

Browse files
committed
Cloudflare DNS has longer delay
1 parent d7d7861 commit 8208685

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

examples/acme.sh/register-and-issue.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ export ACMEDNS_USERNAME=$(jq -r .username creds.json)
1717
export ACMEDNS_PASSWORD=$(jq -r .password creds.json)
1818

1919
# First staging environment
20-
~/.acme.sh/acme.sh --issue --dnssleep 1 --dns dns_acmedns --force -d ${ACMEDNS_FULLDOMAIN} --staging
20+
~/.acme.sh/acme.sh --issue --dns dns_acmedns --force -d ${ACMEDNS_FULLDOMAIN} --staging
2121

2222
# Cleanup
2323
~/.acme.sh/acme.sh --remove -d ${ACMEDNS_FULLDOMAIN} --staging
2424

2525
if [[ $1 == "prod" ]]; then
2626
# Try prod if staging worked (force Let's Encrypt)
2727
# Only do this on a cron schedule, so we don't consume too much of the rate limit
28-
~/.acme.sh/acme.sh --issue --dnssleep 1 --dns dns_acmedns --force -d ${ACMEDNS_FULLDOMAIN} --server letsencrypt
28+
~/.acme.sh/acme.sh --issue --dns dns_acmedns --force -d ${ACMEDNS_FULLDOMAIN} --server letsencrypt
2929
fi
3030

examples/caddy/test.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ do
3636
fi
3737
else
3838
echo "Got a curl error"
39+
cat output
40+
echo ""
3941
fi
4042
done
4143

examples/traefik/traefik.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ certificatesResolvers:
88
storage: /letsencrypt/acme.json
99
dnsChallenge:
1010
provider: acme-dns
11-
delayBeforeCheck: 0
1211
providers:
1312
docker:
1413
exposedByDefault: false

0 commit comments

Comments
 (0)