Hi!
We’re running two instances one is public and one as secure domain.
Yesterday we’ve tried to add two more video bridges to the public and two to the secure domain. For the public instance everything is working fine.
For the secure domain not: If the conference has started on the second/third videobridge the participants can not see and hear each other.
Here the videobridge/config:
# Jitsi Videobridge settings
# sets the XMPP domain (default: none)
JVB_HOSTNAME={{ jitsi_hostname }}
# sets the hostname of the XMPP server (default: domain if set, localhost otherwise)
JVB_HOST=
# sets the port of the XMPP server (default: 5275)
JVB_PORT=5347
# sets the shared secret used to authenticate to the XMPP server
JVB_SECRET={{ jvb_secret }}
# extra options to pass to the JVB daemon
JVB_OPTS="--apis=rest,"
And the sip-communicator.properties:
org.ice4j.ice.harvest.DISABLE_AWS_HARVESTER=true
org.ice4j.ice.harvest.STUN_MAPPING_HARVESTER_ADDRESSES=stun.xxxx.xx:443
org.jitsi.videobridge.ENABLE_STATISTICS=true
org.jitsi.videobridge.STATISTICS_TRANSPORT=muc,colibri
org.jitsi.videobridge.xmpp.user.shard.HOSTNAME={{ xmpp_host }}
org.jitsi.videobridge.xmpp.user.shard.DOMAIN=auth.{{ jitsi_hostname }}
org.jitsi.videobridge.xmpp.user.shard.USERNAME=jvb
org.jitsi.videobridge.xmpp.user.shard.PASSWORD={{ jvb_secret }}
org.jitsi.videobridge.xmpp.user.shard.MUC_JIDS=JvbBrewery@internal.auth.{{ jitsi_hostname }}
org.jitsi.videobridge.xmpp.user.shard.MUC_NICKNAME={{ jvb_nickname }}
org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=true
How should the config look for a videobridge which belongs to a secure domain setup?
Do we need the following lines in the videobridge/config?
org.jitsi.jicofo.auth.URL=XMPP:{{ jitsi_hostname }}
org.jitsi.jicofo.BRIDGE_MUC=JvbBrewery@internal.auth.{{ jitsi_hostname }}
Thanks for helping!