From: fatbob313 Date: Wed, 6 Jan 2010 23:53:29 +0000 (+0000) Subject: Add example configuration file X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;h=c4b66667bdb30d753d835346e2d7b7b05d9324e9;hp=a2278f090858fcb69da788831f7e15775caab756;p=umurmur.git Add example configuration file --- diff --git a/umurmur.conf.example b/umurmur.conf.example new file mode 100644 index 0000000..47c0dea --- /dev/null +++ b/umurmur.conf.example @@ -0,0 +1,42 @@ +max_bandwidth = 48000; +welcometext = "Welcome to uMurmur!"; +certificate = "/etc/umurmur/cert.crt"; +private_key = "/etc/umurmur/key.key"; +password = ""; +max_users = 10; + +# 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 = "The Root of all channels"; + }, + { + name = "Lobby"; + parent = "Root"; + description = "Lobby channel"; + }, + { + name = "Red team"; + parent = "Lobby"; + description = "The Red team channel"; + }, + { + name = "Blue team"; + parent = "Lobby"; + description = "The Blue team channel"; + } +); +# Channel links configuration. +channel_links = ( { + source = "Lobby"; + destination = "Red team"; + }, + { + source = "Lobby"; + destination = "Blue team"; + } +); + +default_channel = "Lobby";