2025-10-27 14:39:47 +01:00
|
|
|
# The hash of the first block in a chain to know with which nodes to work
|
2021-05-13 13:18:27 +02:00
|
|
|
origin = "0000001D2A77D63477172678502E51DE7F346061FF7EB188A2445ECA3FC0780E"
|
2021-05-14 14:14:45 +02:00
|
|
|
# Paths to your key files to load automatically
|
|
|
|
|
key_files = ["key1.toml", "key2.toml", "key3.toml", "key4.toml", "key5.toml"]
|
2021-04-26 21:49:01 +02:00
|
|
|
# How many last blocks to check on start
|
|
|
|
|
check_blocks = 8
|
2021-03-31 16:50:22 +02:00
|
|
|
|
|
|
|
|
# Network settings
|
|
|
|
|
[net]
|
2022-01-02 12:05:54 +02:00
|
|
|
# All bootstrap nodes
|
2021-07-17 13:16:00 +02:00
|
|
|
peers = ["peer-v4.alfis.name:4244", "peer-v6.alfis.name:4244", "peer-ygg.alfis.name:4244"]
|
2021-03-29 11:10:48 +02:00
|
|
|
# Your node will listen on that address for other nodes to connect
|
2025-10-27 14:39:47 +01:00
|
|
|
listen = "[::]:4244"
|
2021-03-29 11:10:48 +02:00
|
|
|
# Set true if you want your IP to participate in peer-exchange, or false otherwise
|
2021-03-23 18:55:11 +01:00
|
|
|
public = true
|
2021-03-31 16:50:22 +02:00
|
|
|
# Allow connections to/from Yggdrasil only (https://yggdrasil-network.github.io)
|
|
|
|
|
yggdrasil_only = false
|
2021-03-06 22:40:19 +01:00
|
|
|
|
2021-03-31 16:57:46 +02:00
|
|
|
# DNS resolver options
|
2021-03-06 22:40:19 +01:00
|
|
|
[dns]
|
2021-03-29 11:10:48 +02:00
|
|
|
# Your DNS resolver will be listening on this address and port (Usual port is 53)
|
2025-10-27 14:39:47 +01:00
|
|
|
listen = "127.0.0.3:53"
|
2021-03-29 11:10:48 +02:00
|
|
|
# How many threads to spawn by DNS server
|
2022-07-10 23:07:59 +02:00
|
|
|
threads = 10
|
2021-03-29 11:10:48 +02:00
|
|
|
# AdGuard DNS servers to filter ads and trackers
|
2021-09-09 18:18:03 +02:00
|
|
|
forwarders = ["https://dns.adguard.com/dns-query"]
|
|
|
|
|
#forwarders = ["94.140.14.14:53", "94.140.15.15:53"]
|
2021-03-29 11:10:48 +02:00
|
|
|
# Cloudflare servers
|
2021-09-09 18:18:03 +02:00
|
|
|
#forwarders = ["https://cloudflare-dns.com/dns-query"]
|
|
|
|
|
#forwarders = ["1.1.1.1:53", "1.0.0.1:53"]
|
2021-09-05 19:05:30 +02:00
|
|
|
|
|
|
|
|
# Bootstrap DNS-servers to resolve domains of DoH providers
|
2022-01-03 22:08:59 +01:00
|
|
|
bootstraps = ["9.9.9.9:53", "94.140.14.14:53"]
|
2021-04-03 14:27:43 +02:00
|
|
|
|
2025-10-27 14:39:47 +01:00
|
|
|
# Enable DNS 0x20 encoding for cache poisoning protection
|
|
|
|
|
# Recommended: true (default)
|
|
|
|
|
# Set false only if upstream resolvers don't preserve case (very rare)
|
|
|
|
|
enable_0x20 = true
|
|
|
|
|
|
2021-04-01 20:59:52 +02:00
|
|
|
# Hosts file support (resolve local names or block ads)
|
|
|
|
|
#hosts = ["system", "adblock.txt"]
|
2021-03-29 11:10:48 +02:00
|
|
|
|
|
|
|
|
#Mining options
|
|
|
|
|
[mining]
|
2021-04-03 14:27:43 +02:00
|
|
|
# How many CPU threads to spawn for mining, zero = number of CPU cores
|
2021-04-10 14:03:52 +02:00
|
|
|
threads = 0
|
2025-10-27 14:39:47 +01:00
|
|
|
# Set a lower priority for mining threads
|
2021-04-24 19:02:24 +02:00
|
|
|
lower = true
|