Add new parameters with some comments
[umurmur.git] / openwrt / files / umurmur.conf
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 # username = "";
10 # groupname = "";
11
12 # bindaddr = "192.168.1.1";
13 # bindport = 64738;
14
15 # Root channel must always be defined first.
16 # If a channel has a parent, the parent must be defined before the child channel(s).
17 channels = ( {
18          name = "Root";
19          parent = "";
20          description = "The Root of all channels";
21          },
22          {
23          name = "Lobby";
24          parent = "Root";
25          description = "Lobby channel";
26          },
27          {
28          name = "Red team";
29          parent = "Lobby";
30          description = "The Red team channel";
31          },
32          {
33          name = "Blue team";
34          parent = "Lobby";
35          description = "The Blue team channel";
36          }
37 );
38 # Channel links configuration.
39 channel_links = ( {
40          source = "Lobby";
41          destination = "Red team";
42          },
43          {
44          source = "Lobby";
45          destination = "Blue team";
46          }
47 );
48
49 default_channel = "Lobby";