Advertisement
Boelle

mumble-server.ini

Nov 21st, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.86 KB | None | 0 0
  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. # If you wish to use something other than SQLite, you'll need to set the name
  6. # of the database above, and also uncomment the below.
  7. # Sticking with SQLite is strongly recommended, as it's the most well tested
  8. # and by far the fastest solution.
  9. #
  10. #dbDriver=QMYSQL
  11. #dbUsername=
  12. #dbPassword=
  13. #dbHost=
  14. #dbPort=
  15. #dbPrefix=murmur_
  16. #dbOpts=
  17.  
  18. # Murmur defaults to not using D-Bus. If you wish to use dbus, which is one of the
  19. # RPC methods available in murmur, please specify so here.
  20. #
  21. dbus=system
  22.  
  23. # Alternate service name. Only use if you are running distinct
  24. # murmurd processes connected to the same D-Bus daemon.
  25. #dbusservice=net.sourceforge.mumble.murmur
  26.  
  27. # If you want to use ZeroC Ice to communicate with Murmur, you need
  28. # to specify the endpoint to use. Since there is no authentication
  29. # with ICE, you should only use it if you trust all the users who have
  30. # shell access to your machine.
  31. # Please see the ICE documentation on how to specify endpoints.
  32. ice="tcp -h 127.0.0.1 -p 6502"
  33.  
  34. # Ice primarily uses local sockets. This means anyone who has a
  35. # user account on your machine can connect to the Ice services.
  36. # You can set a plaintext "secret" on the Ice connection, and
  37. # any script attempting to access must then have this secret
  38. # (as context with name "secret").
  39. # Access is split in read (look only) and write (modify)
  40. # operations. Write access always includes read access,
  41. # unless read is explicitly denied (see note below).
  42. #
  43. # Note that if this is uncommented and with empty content,
  44. # access will be denied.
  45.  
  46. #icesecretread=
  47. #icesecretwrite=******only i need to know :-D ******
  48.  
  49. # How many login attempts do we tolerate from one IP
  50. # inside a given timeframe before we ban the connection?
  51. # Note that this is global (shared between all virtual servers), and that
  52. # it counts both successfull and unsuccessfull connection attempts.
  53. # Set either Attempts or Timeframe to 0 to disable.
  54. #autobanAttempts = 10
  55. #autobanTimeframe = 120
  56. #autobanTime = 300
  57.  
  58. # Murmur default to logging to murmur.log. If you leave this blank,
  59. # murmur will log to the console (linux) or through message boxes (win32).
  60. logfile=/var/log/mumble-server/mumble-server.log
  61.  
  62. # If set, murmur will write its process ID to this file.
  63. pidfile=/var/run/mumble-server/mumble-server.pid
  64.  
  65. # The below will be used as defaults for new configured servers.
  66. # If you're just running one server (the default), it's easier to
  67. # configure it here than through D-Bus or Ice.
  68. #
  69. # Welcome message sent to clients when they connect
  70. welcometext="<br />Welcome to this server running <b>Murmur</b>.<br />Enjoy your stay!<br />"
  71.  
  72. # Port to bind TCP and UDP sockets to
  73. port=64738
  74.  
  75. # Specific IP or hostname to bind to.
  76. # If this is left blank (default), murmur will bind to all available addresses.
  77. host=192.168.0.3
  78.  
  79. # Password to join server
  80. # serverpassword=
  81.  
  82. # Maximum bandwidth (in bits per second) clients are allowed
  83. # to send speech at.
  84. bandwidth=12000000
  85.  
  86. # Maximum number of concurrent clients allowed.
  87. #users=100
  88.  
  89. # Amount of users with Opus support needed to force Opus usage, in percent.
  90. # 0 = Always enable Opus, 100 = enable Opus if it's supported by all clients.
  91. #opusthreshold=100
  92.  
  93. # Regular expression used to validate channel names
  94. # (note that you have to escape backslashes with \ )
  95. #channelname=[ \\-=\\w\\#\\[\\]\\{\\}\\(\\)\\@\\|]+
  96.  
  97. # Regular expression used to validate user names
  98. # (note that you have to escape backslashes with \ )
  99. #username=[-=\\w\\[\\]\\{\\}\\(\\)\\@\\|\\.]+
  100.  
  101. # Maximum length of text messages in characters. 0 for no limit.
  102. #textmessagelength=5000
  103.  
  104. # Maximum length of text messages in characters, with image data. 0 for no limit.
  105. #imagemessagelength=131072
  106.  
  107. # Allow clients to use HTML in messages, user comments and channel descriptions?
  108. #allowhtml=true
  109.  
  110. # Murmur retains the per-server log entries in an internal database which
  111. # allows it to be accessed over D-Bus/ICE.
  112. # How many days should such entries be kept?
  113. # Set to 0 to keep forever, or -1 to disable logging to the DB
  114. #logdays=31
  115.  
  116. # To enable public server registration, the serverpassword must be blank, and
  117. # this must all be filled out.
  118. # The password here is used to create a registry for the server name; subsequent
  119. # updates will need the same password. Don't lose your password.
  120. # The URL is your own website, and only set the registerHostname for static IP
  121. # addresses.
  122. # Only uncomment the 'registerName' parameter if you wish to give your "Root" channel a custom name.
  123. #
  124. registerName=mumble.dns4e.net
  125. registerPassword=******only i need to know******
  126. registerUrl=http://mumble.dns4e.net/mumble-django
  127. registerHostname=http://mumble.dns4e.net/
  128.  
  129. # To enable bonjour service discovery uncomment the following line.
  130. # To change the name announced by bonjour adjust the registerName variable.
  131. # See http://developer.apple.com/networking/bonjour/index.html for more information
  132. # about bonjour.
  133. bonjour=False
  134.  
  135. # If you have a proper SSL certificate, you can provide the filenames here.
  136. # Otherwise, Murmur will create it's own certificate automatically.
  137. #sslCert=
  138. #sslKey=
  139.  
  140. # If murmur is started as root, which user should it switch to?
  141. # This option is ignored if murmur isn't started with root privileges.
  142. uname=mumble-server
  143.  
  144. # If this options is enabled, only clients which have a certificate are allowed
  145. # to connect.
  146. #certrequired=False
  147.  
  148. # If enabled, clients are sent information about the servers version and operating
  149. # system.
  150. #sendversion=True
  151.  
  152. # You can configure any of the configuration options for Ice here. We recommend
  153. # leave the defaults as they are.
  154. # Please note that this section has to be last in the configuration file.
  155. #
  156. [Ice]
  157. Ice.Warn.UnknownProperties=1
  158. Ice.MessageSizeMax=65536
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement