diff options
author | Quentin <quentin@deuxfleurs.fr> | 2021-12-12 13:03:45 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2021-12-12 13:03:45 +0100 |
commit | f73d8dab932f0193c04346b62cee4e51f96248fa (patch) | |
tree | 6622555f4e778c4467fadadde14584c15cffde33 /app | |
parent | c00f0fefe701b44b4e716563f3d92d7770c1710f (diff) | |
download | infrastructure-f73d8dab932f0193c04346b62cee4e51f96248fa.tar.gz infrastructure-f73d8dab932f0193c04346b62cee4e51f96248fa.zip |
log4shell mitigation
Diffstat (limited to 'app')
-rw-r--r-- | app/docker-compose.yml | 4 | ||||
-rwxr-xr-x | app/jitsi/build/jitsi-conference-focus/jicofo | 1 | ||||
-rwxr-xr-x | app/jitsi/build/jitsi-videobridge/jvb_run | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/app/docker-compose.yml b/app/docker-compose.yml index c2a063d..031dd85 100644 --- a/app/docker-compose.yml +++ b/app/docker-compose.yml @@ -56,7 +56,7 @@ services: args: # https://github.com/jitsi/jicofo JICOFO_TAG: jitsi-meet_5463 - image: superboum/amd64_jitsi_conference_focus:v7 + image: superboum/amd64_jitsi_conference_focus:v8 jitsi-videobridge: build: @@ -65,7 +65,7 @@ services: # https://github.com/jitsi/jitsi-videobridge # note: JVB is not tagged with non-stable tags JVB_TAG: stable/jitsi-meet_5390 - image: superboum/amd64_jitsi_videobridge:v17 + image: superboum/amd64_jitsi_videobridge:v18 jitsi-xmpp: build: diff --git a/app/jitsi/build/jitsi-conference-focus/jicofo b/app/jitsi/build/jitsi-conference-focus/jicofo index e307e9f..8fc8fce 100755 --- a/app/jitsi/build/jitsi-conference-focus/jicofo +++ b/app/jitsi/build/jitsi-conference-focus/jicofo @@ -3,6 +3,7 @@ update-ca-certificates -f exec java \ + -Dlog4j2.formatMsgNoLookups=true \ -Djdk.tls.ephemeralDHKeySize=2048 \ -Djava.util.logging.config.file=/usr/share/jicofo/lib/logging.properties \ -Dconfig.file=/etc/jitsi/jicofo.conf \ diff --git a/app/jitsi/build/jitsi-videobridge/jvb_run b/app/jitsi/build/jitsi-videobridge/jvb_run index 7522fae..8d595e6 100755 --- a/app/jitsi/build/jitsi-videobridge/jvb_run +++ b/app/jitsi/build/jitsi-videobridge/jvb_run @@ -12,6 +12,7 @@ fi echo "NAT config: ${JITSI_NAT_LOCAL_IP} -> ${JITSI_NAT_PUBLIC_IP}" exec java \ + -Dlog4j2.formatMsgNoLookups=true \ -Djdk.tls.ephemeralDHKeySize=2048 \ -Djava.util.logging.config.file=/usr/share/jvb/lib/logging.properties \ -Dconfig.file=/etc/jitsi/videobridge.conf \ |