X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=openwrt%2Ffiles%2Fumurmur.conf;h=c48e5653314448386df510d55aba0f79c5afd4d6;hb=d017730cd2eb7eeb219e7fb975cce7c7c377b195;hp=826746bda7fc5759169aedc52b2222bc6c0e01d8;hpb=3a9d9e4e2ec7ad528d50d920161aea272c01d35d;p=umurmur.git diff --git a/openwrt/files/umurmur.conf b/openwrt/files/umurmur.conf index 826746b..c48e565 100644 --- a/openwrt/files/umurmur.conf +++ b/openwrt/files/umurmur.conf @@ -3,21 +3,35 @@ welcometext = "Welcome to uMurmur!"; certificate = "/etc/umurmur/cert.crt"; private_key = "/etc/umurmur/key.key"; password = ""; +# admin_password = "test"; # Set to enable admin functionality. +# ban_length = 0; # Length in seconds for a ban. Default is 0. 0 = forever. +# enable_ban = false; # Default is false +# banfile = "banfile.txt"; # File to save bans to. Default is to not save bans to file. +# sync_banfile = false; # Keep banfile synced. Default is false, which means it is saved to at shutdown only. +# allow_textmessage = true; # Default is true max_users = 10; -# Username and groupname for privilege dropping +# 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 = ""; -# bindaddr = "192.168.1.1"; -# bindport = 64738; +# 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"; @@ -28,11 +42,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. @@ -46,4 +62,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";