-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdnsplane.example.json
More file actions
69 lines (69 loc) · 1.81 KB
/
dnsplane.example.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"fallback_server_ip": "1.1.1.1",
"fallback_server_port": "53",
"fallback_server_transport": "udp",
"timeout": 2,
"port": "53",
"dot_enabled": false,
"dot_bind": "",
"dot_port": "853",
"dot_cert_file": "",
"dot_key_file": "",
"doh_enabled": false,
"doh_bind": "",
"doh_port": "443",
"doh_path": "/dns-query",
"doh_cert_file": "",
"doh_key_file": "",
"axfr_enabled": false,
"axfr_allowed_networks": [],
"dnssec_validate": false,
"dnssec_validate_strict": false,
"dnssec_trust_anchor_file": "",
"dnssec_sign_enabled": false,
"dnssec_sign_zone": "",
"dnssec_sign_key_file": "",
"dnssec_sign_private_key_file": "",
"apiport": "8080",
"api": false,
"cache_records": true,
"min_cache_ttl_seconds": 600,
"stale_while_revalidate": true,
"cache_warm_enabled": true,
"cache_warm_interval_seconds": 10,
"cache_compact_enabled": true,
"cache_compact_interval_seconds": 1800,
"stats_dashboard_enabled": true,
"dashboard_resolution_log_cap": 1000,
"cluster_enabled": false,
"cluster_listen_addr": ":7946",
"cluster_peers": [],
"cluster_auth_token": "",
"cluster_sync_policy": "lww_per_node",
"cluster_allowed_writer_node_ids": [],
"cluster_discovery_srv": "",
"cluster_discovery_interval_seconds": 0,
"full_stats": false,
"full_stats_dir": "./fullstats",
"server_socket": "/tmp/dnsplane.socket",
"server_tcp": "0.0.0.0:8053",
"file_locations": {
"dnsservers": "./dnsservers.json",
"cache": "./dnscache.json",
"records_source": {
"type": "file",
"location": "./dnsrecords.json"
}
},
"DNSRecordSettings": {
"auto_build_ptr_from_a": true,
"forward_ptr_queries": false
},
"log": {
"log_dir": "./log",
"log_severity": "info",
"log_rotation": "size",
"log_rotation_size_mb": 100,
"log_rotation_time_days": 7
}
}