Document how to ignore the NS records of a domain (#1234)

* Update docs
This commit is contained in:
Tom Limoncelli 2021-08-14 15:33:50 -04:00 committed by GitHub
parent 9316517291
commit b6779adf92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,6 +54,15 @@ D("example1.com", REG_NAMECOM,
A("@", "10.2.3.4") A("@", "10.2.3.4")
); );
// Let someone else manage the NS records for a dommain.
// Why? Because you don't have access to the registrar, or the registrar is not
// supported by DNSControl. However you do have API access for
// updating the zone's records (most likely at a different provider).
D("example1.com", REG_THIRDPARTY,
DnsProvider(DNS_NAMECOM),
A("@", "10.2.3.4")
);
// "Registrar only": Direct the registrar to point to some other DNS provider. // "Registrar only": Direct the registrar to point to some other DNS provider.
// Why? In this example we're pointing the domain to the nsone.net DNS // Why? In this example we're pointing the domain to the nsone.net DNS
// service, which someone else is controlling. // service, which someone else is controlling.