summaryrefslogtreecommitdiff
path: root/other/bootstrap_daemon/conf
diff options
context:
space:
mode:
Diffstat (limited to 'other/bootstrap_daemon/conf')
-rw-r--r--other/bootstrap_daemon/conf42
1 files changed, 42 insertions, 0 deletions
diff --git a/other/bootstrap_daemon/conf b/other/bootstrap_daemon/conf
new file mode 100644
index 00000000..28e638c1
--- /dev/null
+++ b/other/bootstrap_daemon/conf
@@ -0,0 +1,42 @@
1// ProjectTox dht bootstrap node daemon configuration file.
2
3// Listening port.
4port = 33445
5
6// The key file is like a password, so keep it where no one can read it.
7// The daemon should have permission to read/write to it.
8// Remember to replace the provided example with your own path.
9keys_file_path = "/home/tom/.tox_bootstrap_daemon/keys"
10
11// The PID file written to by daemon.
12// Make sure that the user who runs the daemon has permissions to write to the
13// PID file.
14// Remember to replace the provided example with your own path.
15pid_file_path = "/home/tom/.tox_bootstrap_daemon/pid"
16
17// Enable IPv6.
18enable_ipv6 = false
19
20// Automatically bootstrap with nodes on local area network.
21enable_lan_discovery = true
22
23// Any number of nodes the daemon will bootstrap itself from.
24// Remember to replace the provided example with your own node list.
25// There is a maintained list of bootstrap nodes on Tox's wiki, if you need it.
26// You may leave the list empty or remove "bootstrap_nodes" complitely,
27// in both cases this will be interpreted as if you don't want to bootstrap
28// from anyone.
29bootstrap_nodes = (
30 { // Node 1
31 // Any ipv4 or ipv6, depending if `enable_ipv6` is set or not, and also
32 // any US-ASCII domain name.
33 address = "198.46.136.167"
34 port = 33445
35 public_key = "728925473812C7AAC482BE7250BCCAD0B8CB9F737BF3D42ABD34459C1768F854"
36 },
37 { // Node 2
38 address = "example.org"
39 port = 33445
40 public_key = "8CD5A9BF0A6CE358BA36F7A653F99FA6B258FF756E490F52C1F98CC420F78858"
41 }
42)