summaryrefslogtreecommitdiff
path: root/other/bootstrap_serverdaemon/server.cfg
blob: 527c2a72b02fef6acca2dc88c7d6d0ed45a45511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// ProjectTox bootstrap server configuration file

// The port used by bootstrap_server to listen on
port = 33445;

// The key file
// make sure that the user who runs the server
// does have permissions to read it/write to it
// Remember to replace the provided example with
// the directory the DHT server will run in.
keys_file = "/home/tom/.bootstrap_server.keys"

// The PID file written to by bootstrap_server,
// make sure that the user who runs the server
// does have permissions to write to it
// Remember to replace the provided example with
// the directory the DHT server will run in.
pid_file = "/home/tom/.bootstrap_server.pid";

// The info of the node bootstap_server will
// bootstrap itself from.
bootstrap_servers = (
  { // Server 1
    ip = "198.46.136.167";
    port =  33445;
    bs_pk = "728925473812C7AAC482BE7250BCCAD0B8CB9F737BF3D42ABD34459C1768F854";
//  }
  },
  { // Server 2
    ip = "192.81.133.111";
    port =  33445;
    bs_pk = "8CD5A9BF0A6CE358BA36F7A653F99FA6B258FF756E490F52C1F98CC420F78858";
  }
);