1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

Improve the getting started docs (#106)

* A more detailed getting started guide.
This commit is contained in:
Tom Limoncelli
2017-05-02 09:08:28 -04:00
committed by GitHub
parent 8769b1f021
commit 05da8b9e83
3 changed files with 239 additions and 24 deletions

View File

@@ -0,0 +1,14 @@
/*
dnsconfig.js: dnscontrol configuration file for ORGANIZATION NAME.
*/
// Providers:
var REG_NONE = NewRegistrar('none', 'NONE'); // No registrar.
var DNS_BIND = NewDnsProvider('bind', 'BIND'); // ISC BIND.
// Domains:
D('example.com', REG_NONE, DnsProvider(DNS_BIND),
A('@', '1.2.3.4')
);