Advertisement
Guest User

Untitled

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