2014-02-23 06:06:07 +08:00
|
|
|
// ProjectTox dht bootstrap node daemon configuration file.
|
2014-01-19 13:43:31 +08:00
|
|
|
|
2014-01-26 09:37:01 +08:00
|
|
|
// Listening port.
|
2014-01-19 13:43:31 +08:00
|
|
|
port = 33445
|
|
|
|
|
2014-01-26 09:37:01 +08:00
|
|
|
// The key file is like a password, so keep it where no one can read it.
|
|
|
|
// The daemon should have permission to read/write to it.
|
|
|
|
// Remember to replace the provided example with your own path.
|
2014-01-26 10:00:31 +08:00
|
|
|
keys_file_path = "/home/tom/.tox_bootstrap_daemon/keys"
|
2014-01-19 13:43:31 +08:00
|
|
|
|
2014-01-26 09:37:01 +08:00
|
|
|
// The PID file written to by daemon.
|
|
|
|
// Make sure that the user who runs the daemon has permissions to write to the
|
|
|
|
// PID file.
|
|
|
|
// Remember to replace the provided example with your own path.
|
2014-01-26 10:00:31 +08:00
|
|
|
pid_file_path = "/home/tom/.tox_bootstrap_daemon/pid"
|
2014-01-19 13:43:31 +08:00
|
|
|
|
2014-01-26 09:37:01 +08:00
|
|
|
// Enable IPv6.
|
2014-01-19 13:43:31 +08:00
|
|
|
enable_ipv6 = false
|
|
|
|
|
2014-01-26 09:37:01 +08:00
|
|
|
// Automatically bootstrap with nodes on local area network.
|
2014-01-19 13:43:31 +08:00
|
|
|
enable_lan_discovery = true
|
|
|
|
|
2014-02-23 06:06:07 +08:00
|
|
|
// Any number of nodes the daemon will bootstrap itself from.
|
|
|
|
// Remember to replace the provided example with your own node list.
|
|
|
|
// There is a maintained list of bootstrap nodes on Tox's wiki, if you need it.
|
|
|
|
// You may leave the list empty or remove "bootstrap_nodes" complitely,
|
2014-01-26 09:37:01 +08:00
|
|
|
// in both cases this will be interpreted as if you don't want to bootstrap
|
|
|
|
// from anyone.
|
2014-02-23 06:06:07 +08:00
|
|
|
bootstrap_nodes = (
|
|
|
|
{ // Node 1
|
2014-01-26 09:37:01 +08:00
|
|
|
// Any ipv4 or ipv6, depending if `enable_ipv6` is set or not, and also
|
|
|
|
// any US-ASCII domain name.
|
2014-01-19 13:43:31 +08:00
|
|
|
address = "198.46.136.167"
|
|
|
|
port = 33445
|
|
|
|
public_key = "728925473812C7AAC482BE7250BCCAD0B8CB9F737BF3D42ABD34459C1768F854"
|
|
|
|
},
|
2014-02-23 06:06:07 +08:00
|
|
|
{ // Node 2
|
2014-01-19 13:43:31 +08:00
|
|
|
address = "example.org"
|
|
|
|
port = 33445
|
|
|
|
public_key = "8CD5A9BF0A6CE358BA36F7A653F99FA6B258FF756E490F52C1F98CC420F78858"
|
|
|
|
}
|
|
|
|
)
|