diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-04-05 10:41:24 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-04-05 10:41:24 +0200 |
commit | 510158e301d3a5da6c1d84a65dbc04b03a4d56eb (patch) | |
tree | b51eed6f2001406a7a25bbe56e2ebe79c4c08601 /nomad/jitsi.hcl | |
parent | 7c4cef0f9c684a8d29cceb5991d9aab3f6702d84 (diff) | |
download | infrastructure-feature/jitsi-upgrade.tar.gz infrastructure-feature/jitsi-upgrade.zip |
Last jitsi configfeature/jitsi-upgrade
Diffstat (limited to 'nomad/jitsi.hcl')
-rw-r--r-- | nomad/jitsi.hcl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/nomad/jitsi.hcl b/nomad/jitsi.hcl index d5d2f4b..3cf3c7e 100644 --- a/nomad/jitsi.hcl +++ b/nomad/jitsi.hcl @@ -93,7 +93,7 @@ job "jitsi" { task "front" { driver = "docker" config { - image = "superboum/amd64_jitsi_front:v1" + image = "superboum/amd64_jitsi_front:v3" network_mode = "host" port_map { https_port = 443 @@ -189,10 +189,10 @@ job "jitsi" { task "videobridge" { driver = "docker" config { - image = "superboum/amd64_jitsi_videobridge:v5" + image = "superboum/amd64_jitsi_videobridge:v6" network_mode = "host" port_map { - video1_port = 4443 + video1_port = 8080 video2_port = 10000 } ulimit { @@ -202,7 +202,8 @@ job "jitsi" { } env { - JITSI_DEBUG = 1 + #JITSI_DEBUG = 1 + JITSI_VIDEO_TCP = 8080 } artifact { @@ -221,7 +222,7 @@ job "jitsi" { memory = 1500 network { port "video1_port" { - static = "4443" + static = "8080" } port "video2_port" { static = "10000" |