Add example configuration file
[umurmur.git] / umurmur.conf.example
1 max_bandwidth = 48000;
2 welcometext = "Welcome to uMurmur!";
3 certificate = "/etc/umurmur/cert.crt";
4 private_key = "/etc/umurmur/key.key";
5 password = "";
6 max_users = 10;
7
8 # Root channel must always be defined first.
9 # If a channel has a parent, the parent must be defined before the child channel(s).
10 channels = ( {
11          name = "Root";
12          parent = "";
13          description = "The Root of all channels";
14          },
15          {
16          name = "Lobby";
17          parent = "Root";
18          description = "Lobby channel";
19          },
20          {
21          name = "Red team";
22          parent = "Lobby";
23          description = "The Red team channel";
24          },
25          {
26          name = "Blue team";
27          parent = "Lobby";
28          description = "The Blue team channel";
29          }
30 );
31 # Channel links configuration.
32 channel_links = ( {
33          source = "Lobby";
34          destination = "Red team";
35          },
36          {
37          source = "Lobby";
38          destination = "Blue team";
39          }
40 );
41
42 default_channel = "Lobby";