I'm not able to get certs
My domain is:
tizlab.xyz
I ran this command:
certbot --domains tizlab.xyz,*.tizlab.xyz --manual --preferred-challenges dns certonly
It produced this output:
IMPORTANT NOTES:
- The following errors were reported by the server:
Domain: tizlab.xyz
Type: dns
Detail: DNS problem: SERVFAIL looking up TXT for
_acme-challenge.tizlab.xyz - the domain's nameservers may be
malfunctioning
Domain: tizlab.xyz
Type: dns
Detail: DNS problem: SERVFAIL looking up TXT for
_acme-challenge.tizlab.xyz - the domain's nameservers may be
malfunctioning
The version of my client:
root@nginx:~# certbot --version
certbot 0.40.0
Can get both TXT records from authoritative NS, from Google public DNS and from DNS configured on the node:
Node configured DNS:
root@nginx:~# dig _acme-challenge.tizlab.xyz txt +short
"h1d8BeZTooEKknYj3p5gJF-jbxm0eQvU7_2uLw0vG0w"
"Pj8gM2ibrvXct_PkwcLuOhzyEAyyamLUPq2456rFalY"
Google:
root@nginx:~# dig @8.8.8.8 _acme-challenge.tizlab.xyz txt +short
"Pj8gM2ibrvXct_PkwcLuOhzyEAyyamLUPq2456rFalY"
"h1d8BeZTooEKknYj3p5gJF-jbxm0eQvU7_2uLw0vG0w"
Authoritative:
root@nginx:~# dig @156.154.132.200 _acme-challenge.tizlab.xyz txt +short
"h1d8BeZTooEKknYj3p5gJF-jbxm0eQvU7_2uLw0vG0w"
"Pj8gM2ibrvXct_PkwcLuOhzyEAyyamLUPq2456rFalY"
root@nginx:~# dig @156.154.133.200 _acme-challenge.tizlab.xyz txt +short
"Pj8gM2ibrvXct_PkwcLuOhzyEAyyamLUPq2456rFalY"
"h1d8BeZTooEKknYj3p5gJF-jbxm0eQvU7_2uLw0vG0w"
Outputs of dig are before the procedure started verifing records.
Tried several times (with new txt records), it always fails. What am I doing wrong?