X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=umurmur.conf.example;h=8dbc18b3e5bb2a4097b7bbe4a81d64ebc5f9bb7c;hb=046935044fe8d2dce3540ad0c385d30edec1f4bf;hp=5fd24bc7ec786c5bd22ca738c6577fb70c78fab5;hpb=0c57b93dfb882580f7ec43f0ddfea83c1c7ea729;p=umurmur.git diff --git a/umurmur.conf.example b/umurmur.conf.example index 5fd24bc..8dbc18b 100644 --- a/umurmur.conf.example +++ b/umurmur.conf.example @@ -25,6 +25,9 @@ max_users = 10; # umurmurd will close and reopen the logfile if SIGHUP is received. # logfile = "/var/log/umurmurd.log"; +# CA location for CA-signed certificates +# ca_path = "/path/to/ca/certificates/"; + # 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). @@ -40,15 +43,23 @@ channels = ( { description = "Lobby channel"; }, { + name = "Silent"; + parent = "Root"; + description = "Silent channel"; + silent = true; # Optional. Default is false + }, + { name = "Red team"; parent = "Lobby"; description = "The Red team channel"; + position = 0; # Optional. Default is 0 and the channels will be shown in alphabetic order. # password = "redpw"; }, { name = "Blue team"; parent = "Lobby"; description = "The Blue team channel"; + position = 1; # Optional. Default is 0 and the channels will be shown in alphabetic order. # password = "bluepw"; } );