Custom DNS (Preview) #488
Yavari
started this conversation in
Show and tell
Replies: 1 comment 2 replies
-
Documentation has been updated to include specific examples. When the List zones API returns a name server, Acmebot automatically checks to see if the domain is pointing to the correct name server. However, this is an optional field. The zone ID will be the id returned by the List Zone API and can be anything that identifies the domain. TXT records can have multiple values. This is required when issuing multiple domain certificates for |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am going to implement a function for my custom DNS provider Loopia but are confused by the documentation at https://github.com/shibayan/keyvault-acmebot/wiki/DNS-Provider-Configuration#custom-dns-preview.
List Zones API:
Is it supposed to return the two name server IPs for the domain?
Upsert record:
{
"type": "TXT",
"ttl": 60,
"values": ["xxxxxx", "yyyyyy"]
}
Is zoneId the domain and *recordName *the subdomain?
What are the two values in that request body in that case? I thought a TXT record only can have one value?
Beta Was this translation helpful? Give feedback.
All reactions