Migrate JVB to the new packaging
This commit is contained in:
parent
83d8668a59
commit
59ca97e2a9
5 changed files with 40 additions and 66 deletions
|
@ -65,8 +65,8 @@ services:
|
||||||
context: ./jitsi/build/jitsi-videobridge
|
context: ./jitsi/build/jitsi-videobridge
|
||||||
args:
|
args:
|
||||||
# https://github.com/jitsi/jitsi-videobridge
|
# https://github.com/jitsi/jitsi-videobridge
|
||||||
PREFIXV: jitsi-meet_
|
PREFIXV: stable/jitsi-meet_
|
||||||
VERSION: 5463
|
VERSION: 5390
|
||||||
image: superboum/amd64_jitsi_videobridge:v17
|
image: superboum/amd64_jitsi_videobridge:v17
|
||||||
|
|
||||||
jitsi-xmpp:
|
jitsi-xmpp:
|
||||||
|
|
|
@ -4,8 +4,9 @@ ARG PREFIXV
|
||||||
ARG VERSION
|
ARG VERSION
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y wget unzip maven openjdk-11-jdk && \
|
apt-get install -y wget unzip maven openjdk-11-jdk-headless
|
||||||
wget https://github.com/jitsi/jitsi-videobridge/archive/${PREFIXV}${VERSION}.zip -O jvb.zip
|
|
||||||
|
RUN wget https://github.com/jitsi/jitsi-videobridge/archive/${PREFIXV}${VERSION}.zip -O jvb.zip
|
||||||
|
|
||||||
RUN unzip jvb.zip && \
|
RUN unzip jvb.zip && \
|
||||||
mv jitsi-videobridge*${VERSION} jvb && \
|
mv jitsi-videobridge*${VERSION} jvb && \
|
||||||
|
@ -20,11 +21,7 @@ FROM debian:buster
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y openjdk-11-jre-headless
|
apt-get install -y openjdk-11-jre-headless
|
||||||
|
|
||||||
COPY --from=builder /jvb/build /srv/jvb
|
COPY --from=builder /jvb/build /usr/share/jvb
|
||||||
ENV HOME=/root
|
|
||||||
WORKDIR /root
|
|
||||||
COPY jvb_run /usr/local/bin/jvb_run
|
COPY jvb_run /usr/local/bin/jvb_run
|
||||||
|
|
||||||
ENV JAVA_SYS_PROPS="-Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/root -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=.sip-communicator -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi"
|
|
||||||
|
|
||||||
CMD ["/usr/local/bin/jvb_run"]
|
CMD ["/usr/local/bin/jvb_run"]
|
||||||
|
|
|
@ -1,54 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
update-ca-certificates -f
|
||||||
|
|
||||||
cat >> /etc/hosts <<EOF
|
exec java \
|
||||||
${JITSI_PROSODY_HOST} jitsi.deuxfleurs.fr conference.jitsi.deuxfleurs.fr jitsi-videobridge.jitsi.deuxfleurs.fr focus.jitsi.deuxfleurs.fr auth.jitsi.deuxfleurs.fr
|
-Xmx3072m \
|
||||||
127.0.0.1 `hostname`
|
-XX:+UseConcMarkSweepGC \
|
||||||
EOF
|
-XX:+HeapDumpOnOutOfMemoryError \
|
||||||
|
-XX:HeapDumpPath=/tmp \
|
||||||
mkdir -p /root/.sip-communicator
|
-Djdk.tls.ephemeralDHKeySize=2048 \
|
||||||
|
-Djava.util.logging.config.file=/usr/share/jvb/lib/logging.properties \
|
||||||
cat > /root/.sip-communicator/sip-communicator.properties <<EOF
|
-Dconfig.file=/etc/jitsi/videobridge.conf \
|
||||||
# Enable broadcasting stats/presence in a MUC
|
-cp '/usr/share/jvb/jitsi-videobridge.jar:/usr/share/jvb/lib/*' \
|
||||||
org.jitsi.videobridge.ENABLE_STATISTICS=true
|
org.jitsi.videobridge.MainKt \
|
||||||
org.jitsi.videobridge.STATISTICS_TRANSPORT=muc
|
--apis=rest,xmpp
|
||||||
|
|
||||||
# Connect to the first XMPP server
|
|
||||||
org.jitsi.videobridge.xmpp.user.shard.HOSTNAME=jitsi.deuxfleurs.fr
|
|
||||||
org.jitsi.videobridge.xmpp.user.shard.DOMAIN=auth.jitsi.deuxfleurs.fr
|
|
||||||
org.jitsi.videobridge.xmpp.user.shard.USERNAME=jvb
|
|
||||||
org.jitsi.videobridge.xmpp.user.shard.PASSWORD=${JITSI_SECRET_VIDEOBRIDGE}
|
|
||||||
org.jitsi.videobridge.xmpp.user.shard.MUC_JIDS=JvbBrewery@internal.auth.jitsi.deuxfleurs.fr
|
|
||||||
org.jitsi.videobridge.xmpp.user.shard.MUC=JvbBrewery@internal.auth.jitsi.deuxfleurs.fr
|
|
||||||
org.jitsi.videobridge.xmpp.user.shard.MUC_NICKNAME=singleton
|
|
||||||
org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=true
|
|
||||||
|
|
||||||
# Do we need it? @FIXME
|
|
||||||
org.jitsi.impl.neomedia.transform.srtp.SRTPCryptoContext.checkReplay=false
|
|
||||||
|
|
||||||
# NAT things, two times just in case...
|
|
||||||
org.ice4j.ice.harvest.TCP_HARVESTER_PORT=${JITSI_VIDEO_TCP}
|
|
||||||
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
|
|
||||||
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
|
|
||||||
org.jitsi.videobridge.TCP_HARVESTER_PORT=${JITSI_VIDEO_TCP}
|
|
||||||
org.jitsi.videobridge.NAT_HARVESTER_LOCAL_ADDRESS=${JITSI_NAT_LOCAL_IP}
|
|
||||||
org.jitsi.videobridge.NAT_HARVESTER_PUBLIC_ADDRESS=${JITSI_NAT_PUBLIC_IP}
|
|
||||||
org.jitsi.videobridge.DISABLE_TCP_HARVESTER=false
|
|
||||||
EOF
|
|
||||||
|
|
||||||
[ -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
|
|
||||||
|
|
||||||
/srv/jvb/jvb.sh \
|
|
||||||
--host=${JITSI_PROSODY_HOST} \
|
|
||||||
--domain=jitsi.deuxfleurs.fr \
|
|
||||||
--port=5347 \
|
|
||||||
--secret=${JITSI_SECRET_VIDEOBRIDGE} \
|
|
||||||
--apis=xmpp,rest
|
|
||||||
|
|
|
@ -18,12 +18,19 @@ services:
|
||||||
- "./prosody/certs/jitsi.crt:/usr/local/share/ca-certificates/jitsi.crt:ro"
|
- "./prosody/certs/jitsi.crt:/usr/local/share/ca-certificates/jitsi.crt:ro"
|
||||||
- "./prosody/certs/auth.jitsi.crt:/usr/local/share/ca-certificates/auth.jitsi.crt:ro"
|
- "./prosody/certs/auth.jitsi.crt:/usr/local/share/ca-certificates/auth.jitsi.crt:ro"
|
||||||
- "./jicofo/jicofo.conf:/etc/jitsi/jicofo.conf:ro"
|
- "./jicofo/jicofo.conf:/etc/jitsi/jicofo.conf:ro"
|
||||||
|
|
||||||
|
jitsi-videobridge:
|
||||||
|
image: superboum/amd64_jitsi_videobridge:v17
|
||||||
|
volumes:
|
||||||
|
- "./prosody/certs/jitsi.crt:/usr/local/share/ca-certificates/jitsi.crt:ro"
|
||||||
|
- "./prosody/certs/auth.jitsi.crt:/usr/local/share/ca-certificates/auth.jitsi.crt:ro"
|
||||||
|
- "./jvb/videobridge.conf:/etc/jitsi/videobridge.conf:ro"
|
||||||
|
ports:
|
||||||
|
- "8080:8080/tcp"
|
||||||
|
- "10000:10000/udp"
|
||||||
|
|
||||||
# jitsi-meet:
|
# jitsi-meet:
|
||||||
# image: superboum/amd64_jitsi_meet:v1
|
# image: superboum/amd64_jitsi_meet:v1
|
||||||
# ports:
|
# ports:
|
||||||
# - "443:443"
|
# - "443:443"
|
||||||
# jitsi-videobridge:
|
|
||||||
# image: superboum/amd64_jitsi_videobridge:v14
|
|
||||||
# ports:
|
|
||||||
# - "8080:8080/tcp"
|
|
||||||
# - "10000:10000/udp"
|
|
||||||
|
|
|
@ -61,6 +61,16 @@ videobridge {
|
||||||
presence-interval = ${videobridge.stats.interval}
|
presence-interval = ${videobridge.stats.interval}
|
||||||
|
|
||||||
configs {
|
configs {
|
||||||
|
unique-xmpp-server {
|
||||||
|
hostname="jitsi-xmpp"
|
||||||
|
domain = "auth.jitsi"
|
||||||
|
username = "jvb"
|
||||||
|
password = "jvbpass"
|
||||||
|
muc_jids = "jvbbrewery@internal.auth.jitsi"
|
||||||
|
# The muc_nickname must be unique across all jitsi-videobridge instances
|
||||||
|
muc_nickname = "unique-jvb-server"
|
||||||
|
disable_certificate_verification = false
|
||||||
|
}
|
||||||
# example-connection-id {
|
# example-connection-id {
|
||||||
# For the properties which should be
|
# For the properties which should be
|
||||||
# filled out here, see MucClientConfiguration
|
# filled out here, see MucClientConfiguration
|
||||||
|
|
Reference in a new issue