max_bandwidth = 48000; welcometext = "Welcome to uMurmur!"; certificate = "/etc/umurmur/cert.crt"; private_key = "/etc/umurmur/key.key"; password = ""; max_users = 10; # bindport = 64738; # bindaddr = "192.168.1.1"; # username and groupname for privilege dropping. # Will attempt to switch user if set. # username = ""; # If groupname not set the user's default login group will be used # groupname = ""; # Log to file option. Default is logging to syslog. # umurmurd will close and reopen the logfile if SIGHUP is received. # logfile = "/var/log/umurmurd.log"; # Channel tree definition: # Root channel must always be defined first. # If a channel has a parent, the parent must be defined before the child channel(s). channels = ( { name = "Root"; parent = ""; description = "Root channel. No entry."; noenter = true; }, { name = "Lobby"; parent = "Root"; description = "Lobby channel"; }, { name = "Red team"; parent = "Lobby"; description = "The Red team channel"; # password = "redpw"; }, { name = "Blue team"; parent = "Lobby"; description = "The Blue team channel"; # password = "bluepw"; } ); # Channel links configuration. channel_links = ( { source = "Lobby"; destination = "Red team"; }, { source = "Lobby"; destination = "Blue team"; } ); # The channel in which users will appear in when connecting. # Note that default channel can't have 'noenter = true' or password set default_channel = "Lobby";