Advertisement
mateuszs

jvb-1-configs

Sep 3rd, 2021
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. # cat config
  2. # Jitsi Videobridge settings
  3.  
  4. # sets the XMPP domain (default: none)
  5. JVB_HOSTNAME=
  6.  
  7. # sets the hostname of the XMPP server (default: domain if set, localhost otherwise)
  8. JVB_HOST=jitsi-vm.OUR_DOMAIN
  9.  
  10. # sets the port of the XMPP server (default: 5275)
  11. JVB_PORT=5347
  12.  
  13. # sets the shared secret used to authenticate to the XMPP server
  14. JVB_SECRET=6FGLcIuL
  15.  
  16. # extra options to pass to the JVB daemon
  17. JVB_OPTS="--apis=,"
  18.  
  19. # cat config
  20. # Jitsi Videobridge settings
  21.  
  22. # sets the XMPP domain (default: none)
  23. JVB_HOSTNAME=
  24.  
  25. # sets the hostname of the XMPP server (default: domain if set, localhost otherwise)
  26. JVB_HOST=jitsi-vm.OUR_DOMAIN
  27.  
  28. # sets the port of the XMPP server (default: 5275)
  29. JVB_PORT=5347
  30.  
  31. # sets the shared secret used to authenticate to the XMPP server
  32. JVB_SECRET=6FGLcIuL
  33.  
  34. # extra options to pass to the JVB daemon
  35. JVB_OPTS="--apis=,"
  36.  
  37.  
  38. # cat jvb.conf
  39. videobridge {
  40. ice {
  41. udp {
  42. enable = true
  43. port = 10000
  44. }
  45. tcp {
  46. enabled = true
  47. port = 4443
  48. }
  49. }
  50.  
  51. http-servers {
  52. public {
  53. port = 9090
  54. }
  55. }
  56.  
  57. websockets {
  58. enabled = true
  59. domain = "jitsi-vm.OUR_DOMAIN:443"
  60. tls = true
  61. server-id = "1"
  62. }
  63.  
  64. octo {
  65. bind-address = 0.0.0.0
  66. public-address = 0.0.0.0
  67. bind-port = "4096"
  68. region = "region1"
  69. enabled = true
  70. }
  71. }
  72.  
  73. # cat sip-communicator.properties
  74. #org.ice4j.ice.harvest.STUN_MAPPING_HARVESTER_ADDRESSES=3.68.22.244:443
  75. org.ice4j.ice.harvest.DISABLE_AWS_HARVESTER=true
  76. org.ice4j.ice.harvest.STUN_MAPPING_HARVESTER_ADDRESSES=meet-jit-si-turnrelay.jitsi.net:443
  77. #org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=3.124.45.227
  78. #org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=3.124.45.227
  79. org.jitsi.videobridge.ENABLE_STATISTICS=true
  80. org.jitsi.videobridge.xmpp.user.shard.HOSTNAME=jitsi-vm.OUR_DOMAIN
  81. org.jitsi.videobridge.xmpp.user.shard.DOMAIN=auth.jitsi-vm.OUR_DOMAIN
  82. org.jitsi.videobridge.xmpp.user.shard.USERNAME=jvb
  83. org.jitsi.videobridge.xmpp.user.shard.PASSWORD=OVqP3eLn
  84. org.jitsi.videobridge.xmpp.user.shard.MUC_JIDS=JvbBrewery@internal.auth.jitsi-vm.OUR_DOMAIN
  85. org.jitsi.videobridge.xmpp.user.shard.MUC_NICKNAME=d8b5134c-6442-425a-b5e6-7fe47b1d3d50
  86. org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=true
  87. #org.jitsi.videobridge.octo.BIND_ADDRESS=0.0.0.0
  88. org.jitsi.videobridge.octo.BIND_ADDRESS=0.0.0.0
  89.  
  90. # the address to advertise (in case BIND_ADDRESS is not accessible)
  91. org.jitsi.videobridge.octo.PUBLIC_ADDRESS=0.0.0.0
  92. # the port to bind to
  93. org.jitsi.videobridge.octo.BIND_PORT=4096
  94. # the region that the jitsi-videobridge instance is in
  95. org.jitsi.videobridge.REGION=region1
  96.  
  97. #org.jitsi.videobridge.ENABLE_STATISTICS=true
  98. org.jitsi.videobridge.STATISTICS_TRANSPORT=muc,colibri,rest
  99. #org.jitsi.videobridge.STATISTICS_INTERVAL=5000
  100.  
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement