mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-06 05:04:29 +08:00
Change double to single quotes in examples.
This commit is contained in:
parent
023dca79e9
commit
f929eadbf9
3 changed files with 13 additions and 13 deletions
|
@ -10,14 +10,14 @@ it will use the DNSControl global default of 300 seconds.
|
||||||
{% include startExample.html %}
|
{% include startExample.html %}
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
|
|
||||||
D("example.com", REGISTRAR, DnsProvider("R53"),
|
D('example.com', REGISTRAR, DnsProvider('R53'),
|
||||||
DefaultTTL(2000),
|
DefaultTTL(2000),
|
||||||
A("@","1.2.3.4"), // uses default
|
A('@','1.2.3.4'), // uses default
|
||||||
A("foo", "2.3.4.5", TTL(500)) // overrides default
|
A('foo', '2.3.4.5', TTL(500)) // overrides default
|
||||||
);
|
);
|
||||||
{%endhighlight%}
|
{%endhighlight%}
|
||||||
|
|
||||||
The DefaultTTL duration is the same format as [TTL](#TTL): an integer number of seconds
|
The DefaultTTL duration is the same format as [TTL](#TTL): an integer number of seconds
|
||||||
or a string with a unit such as `"4d"`.
|
or a string with a unit such as `'4d'`.
|
||||||
|
|
||||||
{% include endExample.html %}
|
{% include endExample.html %}
|
||||||
|
|
|
@ -20,17 +20,17 @@ The value can be:
|
||||||
* n (nonths) (30 days in a nonth)
|
* n (nonths) (30 days in a nonth)
|
||||||
* y (years) (If you set a TTL to a year, we assume you also do crossword puzzles in pen. Show off!)
|
* y (years) (If you set a TTL to a year, we assume you also do crossword puzzles in pen. Show off!)
|
||||||
* If no unit is specified, the default is seconds.
|
* If no unit is specified, the default is seconds.
|
||||||
* We highly recommend using units instead of the number of seconds. Would your coworkers understand your intention better if you wrote 14400 or "4h"?
|
* We highly recommend using units instead of the number of seconds. Would your coworkers understand your intention better if you wrote `14400` or `'4h'`?
|
||||||
|
|
||||||
{% include startExample.html %}
|
{% include startExample.html %}
|
||||||
{% highlight js %}
|
{% highlight js %}
|
||||||
|
|
||||||
D("example.com", REGISTRAR, DnsProvider("R53"),
|
D('example.com', REGISTRAR, DnsProvider('R53'),
|
||||||
DefaultTTL(2000),
|
DefaultTTL(2000),
|
||||||
A("@","1.2.3.4"), // uses default
|
A('@','1.2.3.4'), // uses default
|
||||||
A("foo", "2.3.4.5", TTL(500)), // overrides default
|
A('foo', '2.3.4.5', TTL(500)), // overrides default
|
||||||
A("demo1", "3.4.5.11", TTL("5d")), // 5 days
|
A('demo1', '3.4.5.11', TTL('5d')), // 5 days
|
||||||
A("demo2", "3.4.5.12", TTL("5w")), // 5 weeks
|
A('demo2', '3.4.5.12', TTL('5w')), // 5 weeks
|
||||||
);
|
);
|
||||||
{%endhighlight%}
|
{%endhighlight%}
|
||||||
{% include endExample.html %}
|
{% include endExample.html %}
|
||||||
|
|
|
@ -31,9 +31,9 @@ D('example.com', REG, DnsProvider('GCLOUD'),
|
||||||
{% highlight javascript %}
|
{% highlight javascript %}
|
||||||
|
|
||||||
D('example.com', registrar,
|
D('example.com', registrar,
|
||||||
DefaultTTL(400), // Default for a domain
|
DefaultTTL('5m'), // Default for a domain
|
||||||
A('@', '1.2.3.4', TTL(400)), // individual record
|
A('@', '1.2.3.4', TTL('10m')), // individual record
|
||||||
{'ns_ttl': '400'} // On domain apex NS RRs
|
{'ns_ttl': '600'} // On domain apex NS RRs
|
||||||
);
|
);
|
||||||
|
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue