All checks were successful
continuous-integration/drone/push Build is passing
37 lines
923 B
JavaScript
37 lines
923 B
JavaScript
//////////////////////////////////////////////////////////////////////////
|
|
// define domain
|
|
|
|
domain='collector.dn42';
|
|
|
|
D(
|
|
domain,
|
|
REG_NONE,
|
|
DnsProvider(PDNS),
|
|
NAMESERVER_TTL(62400),
|
|
NAMESERVER('ns1.burble.dn42.'),
|
|
DefaultTTL(3600)
|
|
)
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// ssh interface
|
|
host('@', 'fd42:4242:2601:ac12::1', '172.20.129.4')
|
|
|
|
D_EXTEND(
|
|
domain,
|
|
|
|
// little hack for lg-bird-go
|
|
AAAA('localhost', '::1'),
|
|
|
|
SSHFP('@', 4, 1, 'ff61153c18334e89df3b4b4e4696306eeb5ffe9c'),
|
|
SSHFP('@', 4, 2, 'c3a2470309cb1e6fba252231a6504a096ffd8b6f92442493f762e7512c515e76'),
|
|
|
|
// collector services
|
|
CNAME('explorer', 'traefik.burble.dn42.'),
|
|
CNAME('lg', 'traefik-eu.burble.dn42.'),
|
|
CNAME('mrt', 'traefik-eu.burble.dn42.')
|
|
);
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// end of file
|