Issue 15 - Patch by tilman2: Drop privileges optionally
[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 username = "";
8 groupname = "";
9
10 # Root channel must always be defined first.
11 # If a channel has a parent, the parent must be defined before the child channel(s).
12 channels = ( {
13          name = "Root";
14          parent = "";
15          description = "The Root of all channels";
16          },
17          {
18          name = "Lobby";
19          parent = "Root";
20          description = "Lobby channel";
21          },
22          {
23          name = "Red team";
24          parent = "Lobby";
25          description = "The Red team channel";
26          },
27          {
28          name = "Blue team";
29          parent = "Lobby";
30          description = "The Blue team channel";
31          }
32 );
33 # Channel links configuration.
34 channel_links = ( {
35          source = "Lobby";
36          destination = "Red team";
37          },
38          {
39          source = "Lobby";
40          destination = "Blue team";
41          }
42 );
43
44 default_channel = "Lobby";