From efbf04e231dfca21cd3ffbd051aa2f446df11bd6 Mon Sep 17 00:00:00 2001 From: Patrick G Date: Wed, 11 Oct 2017 11:59:29 -0400 Subject: [PATCH] Improved BIND docs (#221) (#226) * Improved BIND docs - Fixed highlighting language - Improved markdown formatting - Improved grammar * Fix according to review --- docs/_providers/bind.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/docs/_providers/bind.md b/docs/_providers/bind.md index 911e94b34..43c1b4717 100644 --- a/docs/_providers/bind.md +++ b/docs/_providers/bind.md @@ -5,15 +5,12 @@ layout: default jsId: BIND --- # BIND Provider - -This provider simply maintains a directory with a collection of .zone files. We currently copy zone files to our production servers and restart bind via -a script external to DNSControl. +This provider maintains a directory with a collection of .zone files. ## Configuration - In your credentials file (`creds.json`), you can specify a `directory` where the provider will look for and create zone files. The default is the `zones` directory where dnscontrol is run. -{% highlight javascript %} +{% highlight json %} { "bind": { "directory": "myzones" @@ -21,7 +18,7 @@ In your credentials file (`creds.json`), you can specify a `directory` where the } {% endhighlight %} -The BIND provider does not require anything in `creds.json`. It does accept some (optional) metadata via your dns config when you create the provider: +The BIND provider does not require anything in `creds.json`. It does accept some optional metadata via your DNS config when you create the provider: {% highlight javascript %} var BIND = NewDnsProvider('bind', 'BIND', { @@ -42,5 +39,4 @@ var BIND = NewDnsProvider('bind', 'BIND', { }) {% endhighlight %} -If you need to customize your SOA or NS records, you can do it with this setup. - +If you need to customize your SOA or NS records, you can do so with this setup. \ No newline at end of file