2020-03-22 18:47:10 +00:00
|
|
|
#!/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
|
2020-03-27 08:02:49 +00:00
|
|
|
127.0.0.1 `hostname`
|
2020-03-22 18:47:10 +00:00
|
|
|
EOF
|
|
|
|
|
2020-03-27 22:27:52 +00:00
|
|
|
mkdir -p /root/.sip-communicator
|
2020-03-22 18:47:10 +00:00
|
|
|
|
2020-03-27 22:27:52 +00:00
|
|
|
cat > /root/.sip-communicator/sip-communicator.properties <<EOF
|
2020-03-22 18:47:10 +00:00
|
|
|
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
|
2020-04-26 21:07:01 +00:00
|
|
|
org.ice4j.ice.harvest.TCP_HARVESTER_PORT=${JITSI_VIDEO_TCP}
|
2020-03-22 18:47:10 +00:00
|
|
|
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
|
|
|
|
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
|
2020-04-26 21:07:01 +00:00
|
|
|
org.jitsi.videobridge.TCP_HARVESTER_PORT=${JITSI_VIDEO_TCP}
|
2020-03-27 21:48:12 +00:00
|
|
|
org.jitsi.videobridge.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
|
|
|
|
org.jitsi.videobridge.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
|
2020-04-26 21:07:01 +00:00
|
|
|
org.jitsi.videobridge.DISABLE_TCP_HARVESTER=false
|
2020-03-22 18:47:10 +00:00
|
|
|
EOF
|
|
|
|
|
2020-04-02 18:24:50 +00:00
|
|
|
[ -v JITSI_DEBUG ] && cat >> /root/.sip-communicator/sip-communicator.properties <<EOF
|
|
|
|
net.java.sip.communicator.packetlogging.PACKET_LOGGING_ENABLED=true
|
|
|
|
net.java.sip.communicator.packetlogging.PACKET_LOGGING_ARBITRARY_ENABLED=true
|
|
|
|
net.java.sip.communicator.packetlogging.PACKET_LOGGING_SIP_ENABLED=true
|
|
|
|
net.java.sip.communicator.packetlogging.PACKET_LOGGING_JABBER_ENABLED=true
|
|
|
|
net.java.sip.communicator.packetlogging.PACKET_LOGGING_RTP_ENABLED=true
|
|
|
|
net.java.sip.communicator.packetlogging.PACKET_LOGGING_ICE4j_ENABLED=true
|
|
|
|
net.java.sip.communicator.packetlogging.PACKET_LOGGING_FILE_COUNT=1
|
|
|
|
net.java.sip.communicator.packetlogging.PACKET_LOGGING_FILE_SIZE=-1
|
|
|
|
EOF
|
|
|
|
|
2020-03-27 22:27:52 +00:00
|
|
|
/srv/jvb/jvb.sh \
|
2020-03-22 18:47:10 +00:00
|
|
|
--host=${JITSI_PROSODY_HOST} \
|
|
|
|
--domain=jitsi.deuxfleurs.fr \
|
|
|
|
--port=5347 \
|
|
|
|
--secret=${JITSI_SECRET_VIDEOBRIDGE}
|