Advertisement
damo1995

Murmur config

Dec 7th, 2011
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.43 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=
  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=session
  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=
  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=murmur.log
  61.  
  62. # If set, murmur will write its process ID to this file.
  63. #pidfile=
  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 <b>TSCM</b> Mumble Server.<br />Enjoy your stay. Visit us @ www.teamscm.co.uk!<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=
  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=135000
  85.  
  86. # Maximum number of concurrent clients allowed.
  87. users=32
  88. # Regular expression used to validate channel names
  89. # (note that you have to escape backslashes with \ )
  90. #channelname=[ \\-=\\w\\#\\[\\]\\{\\}\\(\\)\\@\\|]+
  91.  
  92. # Regular expression used to validate user names
  93. # (note that you have to escape backslashes with \ )
  94. #username=[-=\\w\\[\\]\\{\\}\\(\\)\\@\\|\\.]+
  95.  
  96. # Maximum length of text messages in characters. 0 for no limit.
  97. #textmessagelength=5000
  98.  
  99. # Maximum length of text messages in characters, with image data. 0 for no limit.
  100. #imagemessagelength=131072
  101.  
  102. # Allow clients to use HTML in messages, user comments and channel descriptions?
  103. #allowhtml=true
  104.  
  105. # Murmur retains the per-server log entries in an internal database which
  106. # allows it to be accessed over D-Bus/ICE.
  107. # How many days should such entries be kept?
  108. # Set to 0 to keep forever, or -1 to disable logging to the DB
  109. #logdays=31
  110.  
  111. # To enable public server registration, the serverpassword must be blank, and
  112. # this must all be filled out.
  113. # The password here is used to create a registry for the server name; subsequent
  114. # updates will need the same password. Don't lose your password.
  115. # The URL is your own website, and only set the registerHostname for static IP
  116. # addresses.
  117. # Only uncomment the 'registerName' parameter if you wish to give your "Root" channel a custom name.
  118. #
  119. registerName=[TSCM] Mumble Server
  120. #registerPassword=secret
  121. #registerUrl=http://mumble.sourceforge.net/
  122. #registerHostname=
  123.  
  124. # To enable bonjour service discovery uncomment the following line.
  125. # To change the name announced by bonjour adjust the registerName variable.
  126. # See http://developer.apple.com/networking/bonjour/index.html for more information
  127. # about bonjour.
  128. #bonjour=True
  129.  
  130. # If you have a proper SSL certificate, you can provide the filenames here.
  131. # Otherwise, Murmur will create it's own certificate automatically.
  132. #sslCert=
  133. #sslKey=
  134.  
  135. # If murmur is started as root, which user should it switch to?
  136. # This option is ignored if murmur isn't started with root privileges.
  137. #uname=
  138.  
  139. # If this options is enabled, only clients which have a certificate are allowed
  140. # to connect.
  141. #certrequired=False
  142.  
  143. # You can configure any of the configuration options for Ice here. We recommend
  144. # leave the defaults as they are.
  145. # Please note that this section has to be last in the configuration file.
  146. #
  147. [Ice]
  148. Ice.Warn.UnknownProperties=1
  149. Ice.MessageSizeMax=65536
  150.  
  151. gtmurmur_ip=94.76.234.38
  152. gtmurmur_port=64738
  153.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement