aboutsummaryrefslogblamecommitdiff
path: root/docker/jitsi/jitsi-videobridge/jvb_run
blob: dcd3cab5eb5be4b47091fcddf7c54675bf8e5a60 (plain) (tree)





















                                                                                                                                                                 
#!/bin/bash

cat >> /etc/hosts <<EOF
${JITSI_PROSODY_HOST} jitsi.deuxfleurs.fr conference.jitsi.deuxfleurs.fr jitsi-videobridge.jitsi.deuxfleurs.fr focus.jitsi.deuxfleurs.fr auth.jitsi.deuxfleurs.fr
EOF

cd /srv/jvb

cat > ~/.sip-communicator/sip-communicator.properties <<EOF
org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false
# The videobridge uses 443 by default with 4443 as a fallback, but since we're already
# running nginx on 443 in this example doc, we specify 4443 manually to avoid a race condition
org.jitsi.videobridge.TCP_HARVESTER_PORT=4443
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
EOF

./jvb.sh \
  --host=${JITSI_PROSODY_HOST} \
  --domain=jitsi.deuxfleurs.fr \
  --port=5347 \
  --secret=${JITSI_SECRET_VIDEOBRIDGE}