Traefik.yml cloudflare certs not working #238
Replies: 4 comments
-
Hey, nice catch! Thank you! |
Beta Was this translation helpful? Give feedback.
-
I found that "disablePropagationCheck: true" alone did not fix this issue and that adding a delay with "delayBeforeCheck: 60" enabled the certs to be generated without issue. Stuck on "Waiting for DNS record propagation" That is a post on the Traefik subreddit listing this as the solution. |
Beta Was this translation helpful? Give feedback.
-
nice one, I had the same problem again several weeks ago and the fix that did last time didnt work this time, your addition did though, man this has been buggin me for ages and it now works, thanks for posting the fix! |
Beta Was this translation helpful? Give feedback.
-
Should add this to the docs / repo! |
Beta Was this translation helpful? Give feedback.
-
a few of us over on Discord had issues with certs via cloudflare not working, adding the following line to the traefik.yml file worked: disablePropagationCheck: true
By setting this flag to true disables the need to wait for the propagation of the TXT record to all authoritative name servers.
maybe you can update your template?
e.g.
certificatesResolvers:
cloudflare:
acme:
email: [email protected]
storage: acme.json
dnsChallenge:
provider: cloudflare
disablePropagationCheck: true
resolvers:
- "1.1.1.1:53"
- "8.8.8.8:53"
Beta Was this translation helpful? Give feedback.
All reactions