Add (commented) passwords to example config.
[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 # bindport = 64738;
9 # bindaddr = "192.168.1.1";
10
11 # username and groupname for privilege dropping.
12 # Will attempt to switch user if set. 
13 # username = "";
14 # If groupname not set the user's default login group will be used
15 # groupname = "";
16
17 # Log to file option. Default is logging to syslog.
18 # umurmurd will close and reopen the logfile if SIGHUP is received.
19 # logfile = "/var/log/umurmurd.log";
20
21 # Channel tree definition:
22 # Root channel must always be defined first.
23 # If a channel has a parent, the parent must be defined before the child channel(s).
24 channels = ( {
25          name = "Root";
26          parent = "";
27          description = "Root channel. No entry.";
28          noenter = true;
29          },
30          {
31          name = "Lobby";
32          parent = "Root";
33          description = "Lobby channel";
34          },
35          {
36          name = "Red team";
37          parent = "Lobby";
38          description = "The Red team channel";
39      # password = "redpw";
40          },
41          {
42          name = "Blue team";
43          parent = "Lobby";
44          description = "The Blue team channel";
45      # password = "bluepw";
46          }
47 );
48 # Channel links configuration.
49 channel_links = ( {
50          source = "Lobby";
51          destination = "Red team";
52          },
53          {
54          source = "Lobby";
55          destination = "Blue team";
56          }
57 );
58
59 # The channel in which users will appear in when connecting.
60 # Note that default channel can't have 'noenter = true' or password set
61 default_channel = "Lobby";