Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: modules/adblockplus/templates/mumble-server.ini.erb

Issue 29517747: #1645 - Introduce mumble module (Closed)
Patch Set: For comment 2 Created Aug. 31, 2017, 7:34 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « modules/adblockplus/manifests/mumble.pp ('k') | modules/private-stub/files/mumble.crt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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['ensure'] and !(['absent'].include? @certificate['ensure']) % >
66 sslCert=<%= @certificate.fetch('path', '/etc/mumble.crt') %>
67 <% end %>
68 <% if @certificate['ensure'] and !(['absent'].include? @certificate['ensure']) % >
69 sslKey=<%= @private_key.fetch('path', '/etc/mumble.key') %>
70 <% end %>
71
72 # If Murmur is started as root, which user should it switch to?
73 # This option is ignored if Murmur isn't started with root privileges.
74 uname=mumble-server
75
76 # You can configure any of the configuration options for Ice here. We recommend
77 # leave the defaults as they are.
78 # Please note that this section has to be last in the configuration file.
79 #
80 [Ice]
81 Ice.Warn.UnknownProperties=1
82 Ice.MessageSizeMax=65536
83
OLDNEW
« no previous file with comments | « modules/adblockplus/manifests/mumble.pp ('k') | modules/private-stub/files/mumble.crt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld