diff options
Diffstat (limited to 'other/bootstrap_serverdaemon/conf')
-rw-r--r-- | other/bootstrap_serverdaemon/conf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/other/bootstrap_serverdaemon/conf b/other/bootstrap_serverdaemon/conf new file mode 100644 index 00000000..70dbdb14 --- /dev/null +++ b/other/bootstrap_serverdaemon/conf | |||
@@ -0,0 +1,40 @@ | |||
1 | // ProjectTox bootstrap server configuration file | ||
2 | |||
3 | // listening port | ||
4 | port = 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 | ||
9 | // your own path | ||
10 | keys_file_path = "/home/tom/.tox_dht_bootstrap_server_daemon/keys" | ||
11 | |||
12 | // The PID file written to by daemon, | ||
13 | // make sure that the user who runs the server | ||
14 | // does have permissions to write to it | ||
15 | // Remember to replace the provided example with | ||
16 | // your own path | ||
17 | pid_file_path = "/home/tom/.tox_dht_bootstrap_server_daemon/pid" | ||
18 | |||
19 | enable_ipv6 = false | ||
20 | |||
21 | // Automatically bootstrap with nodes on local network | ||
22 | enable_lan_discovery = true | ||
23 | |||
24 | // Any number of nodes the daemon will bootstrap itself from | ||
25 | // Remember to replace the provided example with | ||
26 | // your own server list | ||
27 | bootstrap_servers = ( | ||
28 | { // Server 1 | ||
29 | // any ipv4 or ipv6, depending if `enable_ipv6` is set or not | ||
30 | // also any US-ASCII domain name | ||
31 | address = "198.46.136.167" | ||
32 | port = 33445 | ||
33 | public_key = "728925473812C7AAC482BE7250BCCAD0B8CB9F737BF3D42ABD34459C1768F854" | ||
34 | }, | ||
35 | { // Server 2 | ||
36 | address = "example.org" | ||
37 | port = 33445 | ||
38 | public_key = "8CD5A9BF0A6CE358BA36F7A653F99FA6B258FF756E490F52C1F98CC420F78858" | ||
39 | } | ||
40 | ) | ||