diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-04-05 10:42:08 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-04-05 10:42:08 +0200 |
commit | a4799a8e27fbdbe8349d1f9174df7dfd5b3d04b4 (patch) | |
tree | b51eed6f2001406a7a25bbe56e2ebe79c4c08601 /docker/jitsi/jitsi-front | |
parent | 9ee88782339a861f9b98c8c870a3eee4032155b5 (diff) | |
parent | 510158e301d3a5da6c1d84a65dbc04b03a4d56eb (diff) | |
download | infrastructure-a4799a8e27fbdbe8349d1f9174df7dfd5b3d04b4.tar.gz infrastructure-a4799a8e27fbdbe8349d1f9174df7dfd5b3d04b4.zip |
Merge branch 'feature/jitsi-upgrade'
Diffstat (limited to 'docker/jitsi/jitsi-front')
-rw-r--r-- | docker/jitsi/jitsi-front/Dockerfile | 8 | ||||
-rw-r--r-- | docker/jitsi/jitsi-front/config.js | 6 |
2 files changed, 11 insertions, 3 deletions
diff --git a/docker/jitsi/jitsi-front/Dockerfile b/docker/jitsi/jitsi-front/Dockerfile index 239372e..62fa166 100644 --- a/docker/jitsi/jitsi-front/Dockerfile +++ b/docker/jitsi/jitsi-front/Dockerfile @@ -7,6 +7,14 @@ RUN apt-get update && \ npm install && \ make +RUN cd jitsi-meet && \ + sed -i \ + "s/OPTIMAL_BROWSERS: \[.*\],/ OPTIMAL_BROWSERS: [ 'chrome', 'chromium', 'nwjs', 'electron' ],/g" \ + interface_config.js && \ + sed -i \ + "s/UNSUPPORTED_BROWSERS: \[.*\],/ UNSUPPORTED_BROWSERS: [ 'firefox' ],/g" \ + interface_config.js + FROM debian:buster COPY --from=builder /jitsi-meet /srv/jitsi-meet diff --git a/docker/jitsi/jitsi-front/config.js b/docker/jitsi/jitsi-front/config.js index 34f0662..b172303 100644 --- a/docker/jitsi/jitsi-front/config.js +++ b/docker/jitsi/jitsi-front/config.js @@ -268,7 +268,7 @@ var config = { // disable1On1Mode: false, // Default language for the user interface. - // defaultLanguage: 'en', + defaultLanguage: 'fr', // If true all users without a token will be considered guests and all users // with token will be considered non-guests. Only guests will be allowed to @@ -359,7 +359,7 @@ var config = { // If set to true, it will prefer to use H.264 for P2P calls (if H.264 // is supported). - preferH264: true + preferH264: true, // If set to true, disable H.264 video codec by stripping it out of the // SDP. @@ -367,7 +367,7 @@ var config = { // How long we're going to wait, before going back to P2P after the 3rd // participant has left the conference (to filter out page reload). - // backToP2PDelay: 5 + backToP2PDelay: 60 }, analytics: { |