Adding GoDaddy recommendation to use --dnssleep 600. This can prevent intermittent "NXDOMAIN" errors when using LetsEncrypt provider.

Brandon Kirsch 2024-12-26 14:50:24 -05:00
parent 1766f143eb
commit cbfffc20fa

@ -254,9 +254,9 @@ export GD_Key="<key>"
export GD_Secret="<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.