Merge pull request #78 from l2dy/patch-1
[umurmur.git] / umurmur.conf.example
index f12aae321327d143d489703eb8568922d6fd0d5c..8dbc18b3e5bb2a4097b7bbe4a81d64ebc5f9bb7c 100644 (file)
@@ -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).
@@ -43,18 +46,20 @@ channels = ( {
         name = "Silent";
         parent = "Root";
         description = "Silent channel";
-        silent = true; # Default is false 
+        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";
         }
 );