Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. [Voice]
  2.  
  3. ;; The voice module that will be activated for this region
  4. ;; The modules that are currently available are GenericVoice, MurmurVoice, and FreeSwitchVoice
  5. ;; If you do not wish to use voice, use the GenericVoice module so that the client is happy.
  6. ;; If you want higher quality voice, use MurmurVoice
  7. ;Module = GenericVoice;
  8.  
  9. ;; You must have a Mumble server already set up to use Murmur
  10. ;; New, incompatible voice daemon which will do speaker indication,
  11. ;; positional voice, and high quality audio codec. Host voice on the
  12. ;; same server, or use Glacier2 to proxy the insecure ICE protocol.
  13. Module = MurmurVoice;
  14.  
  15. ;; Should FreeSwitch be used?
  16. ;Module = FreeSwitchVoice
  17.  
  18. [GenericVoice]
  19. ;; This needs to be disabled if another voice module is being used!
  20. Enabled = true
  21. ;; This is what the viewer is told the voice module is
  22. ModuleToSend = "SLVoice"
  23.  
  24. [MurmurService]
  25.  
  26. ;; If you are in standalone, or in grid mode, but the grid does not have a grid-wide Murmur service set up, use the following option
  27. MurmurService = MurmurService
  28.  
  29. ;; If the grid you are connected to does(!) have a Murmur service set up and running, select this option, and comment (;) the one above
  30. ;MurmurService = RemoteMurmurConnector
  31.  
  32. ;; Replace 127.0.0.1 with the IP to this computer (if you have issues with an exception, leave 127.0.0.1 here)
  33. murmur_ice_cb = tcp -h 127.0.0.1 -p 6504
  34.  
  35. ;;
  36. ;; NOTE: The following config options are for standalone or grid users that do not have a grid-wide Mumur service set up!
  37. ;;
  38.  
  39. ;; Hostname to the public Murmur server
  40. murmur_host = digigrids.no-ip.org
  41.  
  42. ;; Replace 127.0.0.1 with the same as the murmur_host value
  43. murmur_ice = tcp -h 127.0.0.1 -p 6502
  44.  
  45. ;; If you want all regions connected to this to all be in the same voice chat,
  46. ;; enable this option, and then set the name in the option below
  47. use_one_channel = false
  48.  
  49. ;; Parent channel name to use (if use_one_channel is enabled only)
  50. channel_name = DigiGrids
  51.  
  52. ;;
  53. ;; Most of the configurations options below will not need changed (unless you wish to make modifications)
  54. ;;
  55.  
  56. ;; Server identifier (normally 1)
  57. murmur_sid = 1
  58. ;; Version of the Mumble server
  59. server_version = 1.2.2
  60.  
  61. ;; Enable use of glacier2 (ignore murmur_ice_cb if false)
  62. glacier = false
  63. ;; Glacier proxy
  64. glacier_ice = Glacier2/router:tcp -p 4063 -h digigrids.no-ip.org
  65. ;; Glacier session user
  66. glacier_user = admin
  67. ;; Glacier session password
  68. glacier_pass = darastrix
  69.  
  70. [FreeswitchService]
  71. ;; !!!!!!!!!!!!!!!!!!!!!!!!!!!
  72. ;; !!!!!!STANDALONE MODE ONLY!!!!!!
  73. ;; !!!!!!!!!!!!!!!!!!!!!!!!!!!
  74. ;; IP of your FS server
  75. ;ServerAddress = 85.25.142.92
  76.  
  77. ;; All other options are - well - optional
  78. ; Realm = "127.0.0.1"
  79. ; SIPProxy = "127.0.0.1:5060"
  80. ; EchoServer = "127.0.0.1"
  81. ; EchoPort = 50505
  82. ; AttemptSTUN = "false"
  83. ; DefaultTimeout = 5000
  84. ; Context = "default"
  85. ; UserName = "freeswitch"
  86. ; Password = "password"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement