Files
Alfis/alfis.toml
T

38 lines
1.3 KiB
TOML
Raw Normal View History

2021-03-29 11:10:48 +02:00
# The hash of first block in a chain to know with which nodes to work
2021-05-05 10:41:32 +02:00
origin = "00002883BB006454F795BE6902770B1A18D897B33A0AB1631F53C37C2F41F800"
2021-04-10 15:39:11 +03:00
# A path to your key file to load automatically
2021-05-05 10:41:32 +02:00
key_file = "key1.toml"
# How many last blocks to check on start
check_blocks = 8
# Network settings
[net]
# All bootstap nodes
peers = ["test-ip4.alfis.name:4244", "test-ip6.alfis.name:4244"]
2021-03-29 11:10:48 +02:00
# Your node will listen on that address for other nodes to connect
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
public = true
# Allow connections to/from Yggdrasil only (https://yggdrasil-network.github.io)
yggdrasil_only = false
2021-03-31 16:57:46 +02:00
# DNS resolver options
[dns]
2021-03-29 11:10:48 +02:00
# Your DNS resolver will be listening on this address and port (Usual port is 53)
listen = "127.0.0.1:53"
2021-03-29 11:10:48 +02:00
# How many threads to spawn by DNS server
threads = 20
2021-03-29 11:10:48 +02:00
# AdGuard DNS servers to filter ads and trackers
forwarders = ["94.140.14.14:53", "94.140.15.15:53"]
2021-03-29 11:10:48 +02:00
# Cloudflare servers
#forwarders = ["1.1.1.1:53", "1.0.0.1:53"]
2021-04-03 14:27:43 +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
threads = 0
# Set lower priority for mining threads
2021-04-24 19:02:24 +02:00
lower = true