dns/domains/050-elburb.dn42.js
Simon Marsh 2fcdbda69d
All checks were successful
continuous-integration/drone/push Build is passing
checkpoint
2024-12-02 14:17:36 +00:00

28 lines
595 B
JavaScript

//////////////////////////////////////////////////////////////////////////
// define domains
domain='elburb.dn42';
pdns_domain(domain);
//////////////////////////////////////////////////////////////////////////
// special records
D_EXTEND(
domain,
TXT('canary', "It's Alive!", TTL(1))
);
//////////////////////////////////////////////////////////////////////////
// services
service('@', 'fd42:4242:2601:ac80::1', '172.20.129.3');
D_EXTEND(
domain,
CNAME('www', 'elburb.dn42.')
);
//////////////////////////////////////////////////////////////////////////
// end of file