| LEFT | RIGHT | 
|   1 # Path to database. If blank, will search for |   1 # Path to database. If blank, will search for | 
|   2 # murmur.sqlite in default locations or create it if not found. |   2 # murmur.sqlite in default locations or create it if not found. | 
|   3 database=/var/lib/mumble-server/mumble-server.sqlite |   3 database=/var/lib/mumble-server/mumble-server.sqlite | 
|   4  |   4  | 
|   5 # How many login attempts do we tolerate from one IP |   5 # How many login attempts do we tolerate from one IP | 
|   6 # inside a given timeframe before we ban the connection? |   6 # inside a given timeframe before we ban the connection? | 
|   7 # Note that this is global (shared between all virtual servers), and that |   7 # Note that this is global (shared between all virtual servers), and that | 
|   8 # it counts both successfull and unsuccessfull connection attempts. |   8 # it counts both successfull and unsuccessfull connection attempts. | 
|   9 # Set either Attempts or Timeframe to 0 to disable. |   9 # Set either Attempts or Timeframe to 0 to disable. | 
|  10 autobanAttempts = 10 |  10 autobanAttempts = 10 | 
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  55 # addresses. |  55 # addresses. | 
|  56 # Only uncomment the 'registerName' parameter if you wish to give your "Root" ch
    annel a custom name. |  56 # Only uncomment the 'registerName' parameter if you wish to give your "Root" ch
    annel a custom name. | 
|  57 # |  57 # | 
|  58 registerName=Lobby |  58 registerName=Lobby | 
|  59 #registerPassword=secret |  59 #registerPassword=secret | 
|  60 #registerUrl=http://mumble.sourceforge.net/ |  60 #registerUrl=http://mumble.sourceforge.net/ | 
|  61 #registerHostname= |  61 #registerHostname= | 
|  62  |  62  | 
|  63 # If you have a proper SSL certificate, you can provide the filenames here. |  63 # If you have a proper SSL certificate, you can provide the filenames here. | 
|  64 # Otherwise, Murmur will create it's own certificate automatically. |  64 # Otherwise, Murmur will create it's own certificate automatically. | 
|  65 <% if @certificate and @private_key -%> |  65 <% if @certificate['ensure'] and !(['absent'].include? @certificate['ensure']) %
    > | 
|  66 sslCert=/etc/<%= @certificate %> |  66 sslCert=<%= @certificate.fetch('path', '/etc/mumble.crt') %> | 
|  67 sslKey=/etc/<%= @private_key %> |  67 <% end %> | 
|  68 <% end -%> |  68 <% if @certificate['ensure'] and !(['absent'].include? @certificate['ensure']) %
    > | 
 |  69 sslKey=<%= @private_key.fetch('path', '/etc/mumble.key') %> | 
 |  70 <% end %> | 
|  69  |  71  | 
|  70 # If Murmur is started as root, which user should it switch to? |  72 # 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. |  73 # This option is ignored if Murmur isn't started with root privileges. | 
|  72 uname=mumble-server |  74 uname=mumble-server | 
|  73  |  75  | 
|  74 # You can configure any of the configuration options for Ice here. We recommend |  76 # You can configure any of the configuration options for Ice here. We recommend | 
|  75 # leave the defaults as they are. |  77 # leave the defaults as they are. | 
|  76 # Please note that this section has to be last in the configuration file. |  78 # Please note that this section has to be last in the configuration file. | 
|  77 # |  79 # | 
|  78 [Ice] |  80 [Ice] | 
|  79 Ice.Warn.UnknownProperties=1 |  81 Ice.Warn.UnknownProperties=1 | 
|  80 Ice.MessageSizeMax=65536 |  82 Ice.MessageSizeMax=65536 | 
|  81  |  83  | 
| LEFT | RIGHT |