X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=openwrt%2Ffiles%2Fumurmur.conf;h=853348318750f380e47dc4a22f8845b894b5b555;hb=e6ca07ce683d07d15ebe24d91dfc51bdb4007c39;hp=fad2b8091c3c0522354cc1e48ffde81f7eee00cb;hpb=23a4fcd5944b793bba2cc4cc70c87cd68c3c051c;p=umurmur.git diff --git a/openwrt/files/umurmur.conf b/openwrt/files/umurmur.conf index fad2b80..8533483 100644 --- a/openwrt/files/umurmur.conf +++ b/openwrt/files/umurmur.conf @@ -5,21 +5,27 @@ 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 = ""; -# bindport = 64738; -# bindaddr = "192.168.1.1"; +# 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 = "The Root of all channels"; + description = "Root channel. No entry."; + noenter = true; }, { name = "Lobby"; @@ -30,11 +36,13 @@ channels = ( { 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. @@ -48,4 +56,6 @@ channel_links = ( { } ); +# 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";