From 335c34f4cae010143f2fc12e9727cbe457f3f453 Mon Sep 17 00:00:00 2001 From: ackchyually <99333482+ackchyually@users.noreply.github.com> Date: Wed, 10 Jul 2024 00:03:06 +0100 Subject: [PATCH] Testing showed txt records being set simultaenously as was recommended here resulted in a conflict during validation which would never resolve as one write operation overwrote the other, meaning although the write operation was successful, it would never succeed in reading the first operations value which had been overwritten. --- dnsapi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnsapi.md b/dnsapi.md index 8b9dfc6..c31d7b1 100644 --- a/dnsapi.md +++ b/dnsapi.md @@ -801,7 +801,7 @@ export DuckDNS_Token="" Ok, let's issue a cert now: ``` -acme.sh --issue --dns dns_duckdns -d mydomain.duckdns.org -d *.mydomain.duckdns.org +acme.sh --issue --dns dns_duckdns -d mydomain.duckdns.org ```