| OLD | NEW | 
| (Empty) |  | 
 |   1 # Path to database. If blank, will search for | 
 |   2 # murmur.sqlite in default locations or create it if not found. | 
 |   3 database=/var/lib/mumble-server/mumble-server.sqlite | 
 |   4  | 
 |   5 # How many login attempts do we tolerate from one IP | 
 |   6 # inside a given timeframe before we ban the connection? | 
 |   7 # Note that this is global (shared between all virtual servers), and that | 
 |   8 # it counts both successfull and unsuccessfull connection attempts. | 
 |   9 # Set either Attempts or Timeframe to 0 to disable. | 
 |  10 autobanAttempts = 10 | 
 |  11 autobanTimeframe = 120 | 
 |  12 autobanTime = 300 | 
 |  13  | 
 |  14 # Specifies the file Murmur should log to. By default, Murmur | 
 |  15 # logs to the file 'murmur.log'. If you leave this field blank | 
 |  16 # on Unix-like systems, Murmur will force itself into foreground | 
 |  17 # mode which logs to the console. | 
 |  18 logfile=/var/log/mumble-server/mumble-server.log | 
 |  19  | 
 |  20 # If set, Murmur will write its process ID to this file | 
 |  21 # when running in daemon mode (when the -fg flag is not | 
 |  22 # specified on the command line). Only available on | 
 |  23 # Unix-like systems. | 
 |  24 pidfile=/var/run/mumble-server/mumble-server.pid | 
 |  25  | 
 |  26 # The below will be used as defaults for new configured servers. | 
 |  27 # If you're just running one server (the default), it's easier to | 
 |  28 # configure it here than through D-Bus or Ice. | 
 |  29 # | 
 |  30 # Welcome message sent to clients when they connect. | 
 |  31 welcometext="<br />Welcome to the eyeo talk server running <b>Murmur</b>.<br />E
    njoy your stay!<br />" | 
 |  32  | 
 |  33 # Port to bind TCP and UDP sockets to. | 
 |  34 port=64738 | 
 |  35  | 
 |  36 # Specific IP or hostname to bind to. | 
 |  37 # If this is left blank (default), Murmur will bind to all available addresses. | 
 |  38 #host= | 
 |  39  | 
 |  40 # Password to join server. | 
 |  41 serverpassword=<% if @server_password %><%= @server_password %><% end %> | 
 |  42  | 
 |  43 # Maximum bandwidth (in bits per second) clients are allowed | 
 |  44 # to send speech at. | 
 |  45 bandwidth=72000 | 
 |  46  | 
 |  47 # Maximum number of concurrent clients allowed. | 
 |  48 users=300 | 
 |  49  | 
 |  50 # To enable public server registration, the serverpassword must be blank, and | 
 |  51 # this must all be filled out. | 
 |  52 # The password here is used to create a registry for the server name; subsequent | 
 |  53 # updates will need the same password. Don't lose your password. | 
 |  54 # The URL is your own website, and only set the registerHostname for static IP | 
 |  55 # addresses. | 
 |  56 # Only uncomment the 'registerName' parameter if you wish to give your "Root" ch
    annel a custom name. | 
 |  57 # | 
 |  58 registerName=Lobby | 
 |  59 #registerPassword=secret | 
 |  60 #registerUrl=http://mumble.sourceforge.net/ | 
 |  61 #registerHostname= | 
 |  62  | 
 |  63 # If you have a proper SSL certificate, you can provide the filenames here. | 
 |  64 # Otherwise, Murmur will create it's own certificate automatically. | 
 |  65 <% if @certificate and @private_key -%> | 
 |  66 sslCert=/etc/<%= @certificate %> | 
 |  67 sslKey=/etc/<%= @private_key %> | 
 |  68 <% end -%> | 
 |  69  | 
 |  70 # If Murmur is started as root, which user should it switch to? | 
 |  71 # This option is ignored if Murmur isn't started with root privileges. | 
 |  72 uname=mumble-server | 
 |  73  | 
 |  74 # You can configure any of the configuration options for Ice here. We recommend | 
 |  75 # leave the defaults as they are. | 
 |  76 # Please note that this section has to be last in the configuration file. | 
 |  77 # | 
 |  78 [Ice] | 
 |  79 Ice.Warn.UnknownProperties=1 | 
 |  80 Ice.MessageSizeMax=65536 | 
 |  81  | 
| OLD | NEW |