We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37155ea commit 4f31451Copy full SHA for 4f31451
src/services/cloudflareService.ts
@@ -64,14 +64,16 @@ export class CloudflareService {
64
addChallengeRecord(data: string) {
65
this.challengeData = data;
66
return new Promise(async (resolve) => {
67
+ console.log('adding _acme-challenge DNS record...');
68
await this.cf.dnsRecords.add((await this.getZone()).id, {
69
type: 'TXT',
70
name: `_acme-challenge.${this.config.domain}`,
71
content: this.challengeData,
72
proxied: false,
73
ttl: 1
74
});
- this.locallyVerifyTxtRecord().then(() => resolve());
75
+ //this.locallyVerifyTxtRecord().then(() => resolve());
76
+ setTimeout(() => resolve(), 60000);
77
})
78
}
79
0 commit comments