Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 423 Bytes

File metadata and controls

23 lines (19 loc) · 423 Bytes
name parameters parameter_types
INCLUDE
domain
domain
string

Includes all records from a given domain

{% code title="dnsconfig.js" %}

D("example.com!external", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
  A("test", "8.8.8.8")
);

D("example.com!internal", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
  INCLUDE("example.com!external"),
  A("home", "127.0.0.1")
);

{% endcode %}