You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to apply for two certificates for example.com and *.example.com. example.com can pass DNS resolution authentication successfully, but *.example.com always gets the error Authorization not found in DNS TXT record: _acme-challenge.example.com. When I debug the code, the recordValues array value in the verify.js#verifyDnsChallenge function is always the keyAuthorization of example.com. The reason for the failure is that I cannot modify the DNS server resolution by myself using the dns.setServers method. If I want to customize the DNS server address, how can I do it?
The text was updated successfully, but these errors were encountered:
I just delt with doing wildcards, if you log what TXT records are requested to be added, they both will be _acme-challenge.example.com with 2 different keys to be added. Both need to be added to _acme-challenge.example.com
I need to apply for two certificates for
example.com
and*.example.com
.example.com
can pass DNS resolution authentication successfully, but*.example.com
always gets the error Authorization not found in DNS TXT record:_acme-challenge.example.com
. When I debug the code, therecordValues
array value in theverify.js#verifyDnsChallenge
function is always thekeyAuthorization
ofexample.com
. The reason for the failure is that I cannot modify the DNS server resolution by myself using thedns.setServers
method. If I want to customize the DNS server address, how can I do it?The text was updated successfully, but these errors were encountered: