Moved files

This commit is contained in:
Ruakij
2021-08-02 15:39:47 +02:00
parent 43ed39f5d4
commit 83497e92e8
3 changed files with 0 additions and 0 deletions

7
data/config.yml Normal file
View File

@@ -0,0 +1,7 @@
socket:
address: ""
port: 53
zone:
public-suffix: '.public'

7
data/creds.json Normal file
View File

@@ -0,0 +1,7 @@
{
"powerdns": {
"apiUrl": "http://pdns",
"apiKey": "",
"serverName": "localhost"
}
}

23
data/dnsconfig.js Normal file
View File

@@ -0,0 +1,23 @@
// Providers
var REG_NONE = NewRegistrar('none', 'NONE'); // No registrar.
var cloudflare = NewDnsProvider('cloudflare', 'CLOUDFLAREAPI');
// Default settings
DEFAULTS(
NAMESERVER_TTL('1d'),
DefaultTTL('1d'),
AUTOSPLIT, // Split long TXT
CF_PROXY_DEFAULT_OFF // Dont use Cloudflare-Proxy-Feature
);
// Zone-declaration
D('example.com', REG_NONE, DnsProvider(cloudflare));
// Include
// (Do not touch unless you know what you are doing!)
require_glob(""); // TODO: determine correct location to include