summaryrefslogtreecommitdiff
path: root/other/bootstrap_serverdaemon/conf
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2014-02-22 17:06:07 -0500
committerMaxim Biro <nurupo.contributions@gmail.com>2014-02-22 17:07:15 -0500
commit5a142bb697651693e4ce7654d2f74e688aab8894 (patch)
tree4268ae9377593d8632efbbe57bb4680744014f2a /other/bootstrap_serverdaemon/conf
parent44c1dfc5fda6393f18ef7b4178c0c32f3d64f357 (diff)
Renamed dht server to dht node
Diffstat (limited to 'other/bootstrap_serverdaemon/conf')
-rw-r--r--other/bootstrap_serverdaemon/conf41
1 files changed, 0 insertions, 41 deletions
diff --git a/other/bootstrap_serverdaemon/conf b/other/bootstrap_serverdaemon/conf
deleted file mode 100644
index 8451d9a0..00000000
--- a/other/bootstrap_serverdaemon/conf
+++ /dev/null
@@ -1,41 +0,0 @@
1// ProjectTox dht bootstrap server 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 servers the daemon will bootstrap itself from.
24// Remember to replace the provided example with your own server list.
25// You may leave the list empty or remove "bootstrap_servers" complitely,
26// in both cases this will be interpreted as if you don't want to bootstrap
27// from anyone.
28bootstrap_servers = (
29 { // Server 1
30 // Any ipv4 or ipv6, depending if `enable_ipv6` is set or not, and also
31 // any US-ASCII domain name.
32 address = "198.46.136.167"
33 port = 33445
34 public_key = "728925473812C7AAC482BE7250BCCAD0B8CB9F737BF3D42ABD34459C1768F854"
35 },
36 { // Server 2
37 address = "example.org"
38 port = 33445
39 public_key = "8CD5A9BF0A6CE358BA36F7A653F99FA6B258FF756E490F52C1F98CC420F78858"
40 }
41)