From cbfffc20fac7b6657349a1ba5987fa41ffd55532 Mon Sep 17 00:00:00 2001 From: Brandon Kirsch Date: Thu, 26 Dec 2024 14:50:24 -0500 Subject: [PATCH] Adding GoDaddy recommendation to use --dnssleep 600. This can prevent intermittent "NXDOMAIN" errors when using LetsEncrypt provider. --- dnsapi.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dnsapi.md b/dnsapi.md index 1619d92..001c9bd 100644 --- a/dnsapi.md +++ b/dnsapi.md @@ -254,9 +254,9 @@ export GD_Key="" export GD_Secret="" ``` -Ok, let's issue a cert now: +Ok, let's issue a cert now. For GoDaddy, it is recommended that you specify a 600 second dnssleep. ```sh -./acme.sh --issue --dns dns_gd -d example.com -d *.example.com +./acme.sh --issue --dns dns_gd --dnssleep 600 -d example.com -d *.example.com ``` The `GD_Key` and `GD_Secret` will be saved in `~/.acme.sh/account.conf` and will be reused when needed.