Add new parameters with some comments
[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 # username and groupname for privilege dropping.
9 # Will attempt to switch user if set. 
10 # username = "";
11 # If groupname not set the user's default login group will be used
12 # groupname = "";
13
14 # bindport = 64738;
15 # bindaddr = "192.168.1.1";
16
17 # Root channel must always be defined first.
18 # If a channel has a parent, the parent must be defined before the child channel(s).
19 channels = ( {
20          name = "Root";
21          parent = "";
22          description = "The Root of all channels";
23          },
24          {
25          name = "Lobby";
26          parent = "Root";
27          description = "Lobby channel";
28          },
29          {
30          name = "Red team";
31          parent = "Lobby";
32          description = "The Red team channel";
33          },
34          {
35          name = "Blue team";
36          parent = "Lobby";
37          description = "The Blue team channel";
38          }
39 );
40 # Channel links configuration.
41 channel_links = ( {
42          source = "Lobby";
43          destination = "Red team";
44          },
45          {
46          source = "Lobby";
47          destination = "Blue team";
48          }
49 );
50
51 default_channel = "Lobby";