summaryrefslogtreecommitdiff
path: root/other/bootstrap_serverdaemon/server.cfg
diff options
context:
space:
mode:
authorTom Bartelt <tom@ataullah.(none)>2013-07-23 06:02:08 -0400
committerTom Bartelt <tom@ataullah.(none)>2013-07-23 06:02:08 -0400
commita11fa54fa24e7cb95cc7a9298925ce12e518e867 (patch)
tree604f0ecd567b8c71b536fe74df5b73d58dc2fd71 /other/bootstrap_serverdaemon/server.cfg
parent4504011117d74a27a7127f31a62d2e4f7a187afb (diff)
Added config file
Diffstat (limited to 'other/bootstrap_serverdaemon/server.cfg')
-rw-r--r--other/bootstrap_serverdaemon/server.cfg33
1 files changed, 33 insertions, 0 deletions
diff --git a/other/bootstrap_serverdaemon/server.cfg b/other/bootstrap_serverdaemon/server.cfg
new file mode 100644
index 00000000..aa85e132
--- /dev/null
+++ b/other/bootstrap_serverdaemon/server.cfg
@@ -0,0 +1,33 @@
1// ProjectTox bootstrap server configuration file
2
3// The port used by bootstrap_server to listen on
4port = 33445;
5
6// The key files
7// This doesn't actually work, don't be fooled!
8// Waiting for better support from the core.
9//public_key = "/home/tom/pubkey";
10//secret_key = "/home/tom/seckey";
11// Guess I was wrong!
12keys_file = "/home/tom/.bootstrap_server.keys"
13
14// The PID file written to by bootstrap_server,
15// make sure that the user who runs the server
16// does have permissions to write to it
17pid_file = "/home/tom/.bootstrap_server.pid";
18
19// The info of the node bootstap_server will
20// bootstrap itself from.
21bootstrap_servers = (
22 { // Server 1
23 ip = "198.46.136.167";
24 port = 33445;
25 bs_pk = "728925473812C7AAC482BE7250BCCAD0B8CB9F737BF3D42ABD34459C1768F854";
26// }
27 },
28 { // Server 2
29 ip = "192.81.133.111";
30 port = 33445;
31 bs_pk = "8CD5A9BF0A6CE358BA36F7A653F99FA6B258FF756E490F52C1F98CC420F78858";
32 }
33);