Difference between revisions of "Configuring Murmur"

From Mumble Wiki
Jump to: navigation, search
 
(ini file: an example)
Line 3: Line 3:
  
  
== Getting The ini file ==
+
== Ini file ==
This is not complete
+
The server configuration is done through the '''murmur.ini''' file. Here's an example file:
 +
 
 +
<pre>
 +
# Welcome message sent to users
 +
welcometext="<br />Welcome to this server running <b>Murmur</b>.<br />Enjoy your stay!<br />"
 +
 
 +
# Port to bind TCP and UDP sockets to
 +
port=64738
 +
 
 +
# Users hear themselves? (Testmode)
 +
loop=false
 +
 
 +
# Path to database. If blank, will search for
 +
# murmur.sqlite in default locations.
 +
database=
 +
 
 +
# Password to join server
 +
serverpassword=
 +
 
 +
# How often should commands from the database be checked?
 +
# The default is every 10 seconds. Unless you're writing your
 +
# own scripts, don't bother with this.
 +
commandtime=1
 +
 
 +
# Maximum bandwidth (in bytes per second) clients are allowed
 +
# send speech at.
 +
bandwidth=5000
 +
 
 +
# Maximum number of concurrent clients allowed.
 +
users=50
 +
 
 +
</pre>
 +
 
 +
Is pretty self-explanatory.

Revision as of 07:27, 16 April 2007

Murmur (A.K.A. mumble server)

Ini file

The server configuration is done through the murmur.ini file. Here's an example file:

# Welcome message sent to users
welcometext="<br />Welcome to this server running <b>Murmur</b>.<br />Enjoy your stay!<br />"

# Port to bind TCP and UDP sockets to
port=64738

# Users hear themselves? (Testmode)
loop=false

# Path to database. If blank, will search for
# murmur.sqlite in default locations.
database=

# Password to join server
serverpassword=

# How often should commands from the database be checked?
# The default is every 10 seconds. Unless you're writing your
# own scripts, don't bother with this.
commandtime=1

# Maximum bandwidth (in bytes per second) clients are allowed
# send speech at.
bandwidth=5000

# Maximum number of concurrent clients allowed.
users=50

Is pretty self-explanatory.