mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-14 07:33:36 +01:00
DNS challenge timeouts when obtaining Let's Encrypt certs for wildcard domain (cloudflare) #41
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @veigamann on GitHub (Feb 28, 2025).
GoDoxy's autocert tries to get certificates for my domain but keeps timing out during DNS verification.
GoDoxy successfully creates the TXT records in Cloudflare (
_acme-challenge.mydomain.com). but the DNS propagation is timing out.Log:
autocert section in config.yml:
I can see the TXT records being created correctly in the Cloudflare dashboard, but GoDoxy can't seem to verify them. I do have a
*.mydomain.comrecord pointing to my router's public IP address, which port forwards ports 80/tcp and 443/tcp to my server.Looks like IPv6 related timeouts - I noticed all the failed queries are using IPv6 addresses to reach Cloudflare's nameservers. Could this be related to my host machine config? Firewall issue or something with my DNS setup?
@yusing commented on GitHub (Feb 28, 2025):
Hi, seems like a DNS issue. Please try overriding dns server in docker compose like this for GoDoxy.
@veigamann commented on GitHub (Mar 2, 2025):
I ended up resolving the issue by formatting my server (it's just a test environment, so no big deal). Turns out it was a local config problem. Thanks for the help, and I'll close this issue now.