mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-15 20:55:34 +08:00
31bdb65720
- Fixed indentation - Use same naming scheme for all examples (i.e. all caps for provider, REG prefix for registrar) - Use REG_NONE as registrar when provider does not provide it - Use example.tld for example domain - Use 1.2.3.1/24 IP range for examples - A few spelling fixes
636 B
636 B
name | title | layout | jsId |
---|---|---|---|
NS1 | NS1 Provider | default | NS1 |
NS1 Provider
NS1 provides a dns provider implementation for ns1 dns.
Configuration
In your providers config json file you must provide your ns1 api key:
{% highlight json %} { "ns1":{ "api_token": "your-ns1-token" } } {% endhighlight %}
Metadata
This provider does not recognize any special metadata fields unique to ns1.
Usage
Example javascript:
{% highlight js %} var REG_NONE = NewRegistrar('none', 'NONE') var NS1 = NewDnsProvider("ns1", "NS1");
D("example.tld", REG_NONE, DnsProvider(NS1), A("test","1.2.3.4") ); {% endhighlight %}