Difference between revisions of "Configuring Murmur"

From Mumble Wiki
Jump to: navigation, search
(ini file: an example)
(Ini file)
Line 38: Line 38:
  
 
Is pretty self-explanatory.
 
Is pretty self-explanatory.
 +
 +
== Using an external database ==
 +
 +
It is possible to use an external database instead of SQLite:
 +
* [[Murmur and PostgreSQL]]

Revision as of 15:08, 14 August 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.

Using an external database

It is possible to use an external database instead of SQLite: