andsim

Untitled

Jul 5th, 2011
549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 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 64.15.138.207 -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 conntection, and
  37. # any script attempting to access must then have this secret.
  38. #icesecret=
  39.  
  40. # How many login attempts do we tolerate from one IP
  41. # inside a given timeframe before we ban the connection?
  42. # Note that this is global (shared between all virtual servers), and that
  43. # it counts both successfull and unsuccessfull connection attempts.
  44. # Set either Attempts or Timeframe to 0 to disable.
  45. autobanAttempts = 10
  46. autobanTimeframe = 120
  47. autobanTime = 300
  48.  
  49. # Murmur default to logging to murmur.log. If you leave this blank,
  50. # murmur will log to the console (linux) or through message boxes (win32).
  51. logfile=murmur.log
  52.  
  53. # If set, murmur will write its process ID to this file.
  54. #pidfile=
  55.  
  56. # The below will be used as defaults for new configured servers.
  57. # If you're just running one server (the default), it's easier to
  58. # configure it here than through D-Bus or Ice.
  59. #
  60. # Welcome message sent to clients when they connect
  61. welcometext="<br />Welcome to Aurora testing <b>Murmur</b>.<br />Enjoy your stay!<br />"
  62.  
  63. # Port to bind TCP and UDP sockets to
  64. port=64738
  65.  
  66. # Specific IP or hostname to bind to.
  67. # If this is left blank (default), murmur will bind to all available addresses.
  68. host=64.15.138.207
  69.  
  70. # Password to join server
  71. #serverpassword=
  72.  
  73. # Maximum bandwidth (in bits per second) clients are allowed
  74. # to send speech at.
  75. bandwidth=72000
  76.  
  77. # Maximum number of concurrent clients allowed.
  78. users=100
  79.  
  80. # Regular expression used to validate channel names
  81. # (note that you have to escape backslashes with \ )
  82. channelname=[ \\-=\\w\\#\\[\\]\\{\\}\\(\\)\\@\\|]+
  83.  
  84. # Regular expression used to validate user names
  85. # (note that you have to escape backslashes with \ )
  86. username=[-=\\w\\[\\]\\{\\}\\(\\)\\@\\|\\.]+
  87.  
  88. # Maximum length of text messages in characters. 0 for no limit.
  89. #textmessagelength=5000
  90.  
  91. # Maximum length of text messages in characters, with image data. 0 for no limit.
  92. #imagemessagelength=131072
  93.  
  94. # Allow clients to use HTML in messages, user comments and channel descriptions?
  95. #allowhtml=true
  96.  
  97. # Murmur retains the per-server log entries in an internal database which
  98. # allows it to be accessed over D-Bus/ICE.
  99. # How many days should such entries be kept?
  100. #logdays=31
  101.  
  102. # To enable public server registration, the serverpassword must be blank, and
  103. # this must all be filled out.
  104. # The password here is used to create a registry for the server name; subsequent
  105. # updates will need the same password. Don't lose your password.
  106. # The URL is your own website, and only set the registerHostname for static IP
  107. # addresses.
  108. #
  109. registerName="Mumble Server"
  110. registerPassword=
  111. registerUrl=http://64.15.138.207/
  112. registerHostname=grid.ansky.ca
  113.  
  114. # To enable bonjour service discovery uncomment the following line.
  115. # To change the name announced by bonjour adjust the registerName variable.
  116. # See http://developer.apple.com/networking/bonjour/index.html for more information
  117. # about bonjour.
  118. #bonjour=True
  119.  
  120. # If you have a proper SSL certificate, you can provide the filenames here.
  121. #sslCert=
  122. #sslKey=
  123.  
  124. # If murmur is started as root, which user should it switch to?
  125. # This option is ignored if murmur isn't started with root privileges.
  126. uname=
  127.  
  128. # If this options is enabled, only clients which have a certificate are allowed
  129. # to connect.
  130. certrequired=False
  131.  
  132. # You can configure any of the configuration options for Ice here. We recommend
  133. # leave the defaults as they are.
  134. # Please note that this section has to be last in the configuration file.
  135. #
  136. [Ice]
  137. Ice.Warn.UnknownProperties=1
  138. Ice.MessageSizeMax=65536
Advertisement
Add Comment
Please, Sign In to add comment