Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.74 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=
  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=session
  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=murmur.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=
  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="<br />Sam is hosting a new CSGO server. Server is only online when asked, copy and paste this into console to connect when server is online.
  89.  
  90.  
  91. connect 71.194.12.33:27015; password gaysonly <b>Murmur</b>.<br />Enjoy your stay!<br />"
  92.  
  93. # Port to bind TCP and UDP sockets to.
  94. port=9777
  95.  
  96. # Specific IP or hostname to bind to.
  97. # If this is left blank (default), Murmur will bind to all available addresses.
  98. #host=
  99.  
  100. # Password to join server.
  101. serverpassword=
  102.  
  103. # Maximum bandwidth (in bits per second) clients are allowed
  104. # to send speech at.
  105. bandwidth=72000
  106.  
  107. # Maximum number of concurrent clients allowed.
  108. users=100
  109.  
  110. # Amount of users with Opus support needed to force Opus usage, in percent.
  111. # 0 = Always enable Opus, 100 = enable Opus if it's supported by all clients.
  112. #opusthreshold=100
  113.  
  114. # Maximum depth of channel nesting. Note that some databases like MySQL using
  115. # InnoDB will fail when operating on deeply nested channels.
  116. #channelnestinglimit=10
  117.  
  118. # Regular expression used to validate channel names.
  119. # (Note that you have to escape backslashes with \ )
  120. #channelname=[ \\-=\\w\\#\\[\\]\\{\\}\\(\\)\\@\\|]+
  121.  
  122. # Regular expression used to validate user names.
  123. # (Note that you have to escape backslashes with \ )
  124. #username=[-=\\w\\[\\]\\{\\}\\(\\)\\@\\|\\.]+
  125.  
  126. # Maximum length of text messages in characters. 0 for no limit.
  127. #textmessagelength=5000
  128.  
  129. # Maximum length of text messages in characters, with image data. 0 for no limit.
  130. #imagemessagelength=131072
  131.  
  132. # Allow clients to use HTML in messages, user comments and channel descriptions?
  133. #allowhtml=true
  134.  
  135. # Murmur retains the per-server log entries in an internal database which
  136. # allows it to be accessed over D-Bus/ICE.
  137. # How many days should such entries be kept?
  138. # Set to 0 to keep forever, or -1 to disable logging to the DB.
  139. #logdays=31
  140.  
  141. # To enable public server registration, the serverpassword must be blank, and
  142. # this must all be filled out.
  143. # The password here is used to create a registry for the server name; subsequent
  144. # updates will need the same password. Don't lose your password.
  145. # The URL is your own website, and only set the registerHostname for static IP
  146. # addresses.
  147. # Only uncomment the 'registerName' parameter if you wish to give your "Root" channel a custom name.
  148. #
  149. registerName=Sams Hosted Mumble server
  150. #registerPassword=gaysonly
  151. #registerUrl=https://www.mumble.info/
  152. #registerHostname=
  153.  
  154. # If this option is enabled, the server will announce its presence via the
  155. # bonjour service discovery protocol. To change the name announced by bonjour
  156. # adjust the registerName variable.
  157. # See http://developer.apple.com/networking/bonjour/index.html for more information
  158. # about bonjour.
  159. #bonjour=True
  160.  
  161. # If you have a proper SSL certificate, you can provide the filenames here.
  162. # Otherwise, Murmur will create it's own certificate automatically.
  163. #sslCert=
  164. #sslKey=
  165.  
  166. # The sslCiphers option chooses the cipher suites to make available for use
  167. # in SSL/TLS. This option is server-wide, and cannot be set on a
  168. # per-virtual-server basis.
  169. #
  170. # This option is specified using OpenSSL cipher list notation (see
  171. # https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT).
  172. #
  173. # It is recommended that you try your cipher string using 'openssl ciphers <string>'
  174. # before setting it here, to get a feel for which cipher suites you will get.
  175. #
  176. # After setting this option, it is recommend that you inspect your Murmur log
  177. # to ensure that Murmur is using the cipher suites that you expected it to.
  178. #
  179. # Note: Changing this option may impact the backwards compatibility of your
  180. # Murmur server, and can remove the ability for older Mumble clients to be able
  181. # to connect to it.
  182. #sslCiphers=EECDH+AESGCM:AES256-SHA:AES128-SHA
  183.  
  184. # If Murmur is started as root, which user should it switch to?
  185. # This option is ignored if Murmur isn't started with root privileges.
  186. #uname=
  187.  
  188. # If this options is enabled, only clients which have a certificate are allowed
  189. # to connect.
  190. #certrequired=False
  191.  
  192. # If enabled, clients are sent information about the servers version and operating
  193. # system.
  194. #sendversion=True
  195.  
  196. # You can configure any of the configuration options for Ice here. We recommend
  197. # leave the defaults as they are.
  198. # Please note that this section has to be last in the configuration file.
  199. #
  200. [Ice]
  201. Ice.Warn.UnknownProperties=1
  202. Ice.MessageSizeMax=65536
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement