From 43510e0472fadc08e45fcdcee125c44d196d40f0 Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Sat, 17 Feb 2024 17:58:52 +0100 Subject: [PATCH] Jitsi : jicofo port fix? --- podman-jitsi/.gitlab-ci.yml | 4 ++-- podman-jitsi/10_install.sh | 1 + podman-jitsi/vars.sh | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/podman-jitsi/.gitlab-ci.yml b/podman-jitsi/.gitlab-ci.yml index 3b1d286..a3cc8d8 100644 --- a/podman-jitsi/.gitlab-ci.yml +++ b/podman-jitsi/.gitlab-ci.yml @@ -10,12 +10,12 @@ jitsi: script: - cd podman-jitsi - ./ci_build-images.sh - - GARBAYE_JITSI_URL=https://jitsi.garbaye.fr GARBAYE_JITSI_ENV_LISTENPORT=18085 ./10_install.sh + - GARBAYE_JITSI_URL=https://jitsi.garbaye.fr GARBAYE_JITSI_ENV_LISTENPORT=18085 GARBAYE_JITSI_ENV_JICOFORESTPORT=18888 ./10_install.sh - ./20_enable.sh - ./30_start.sh && sleep 10 - ./40_stop.sh - ./30_start.sh && sleep 10 - - GARBAYE_JITSI_URL=https://jitsi.garbaye.fr GARBAYE_JITSI_ENV_LISTENPORT=18085 ./50_update.sh + - GARBAYE_JITSI_URL=https://jitsi.garbaye.fr GARBAYE_JITSI_ENV_LISTENPORT=18085 GARBAYE_JITSI_ENV_JICOFORESTPORT=18888 ./50_update.sh - ./40_stop.sh - ./70_disable.sh - ./80_destroy.sh diff --git a/podman-jitsi/10_install.sh b/podman-jitsi/10_install.sh index 0fc7bd3..f164143 100755 --- a/podman-jitsi/10_install.sh +++ b/podman-jitsi/10_install.sh @@ -59,6 +59,7 @@ echo "ENABLE_P2P=false" >> .env echo "XMPP_SERVER=prosody" >> .env echo "XMPP_BOSH_URL_BASE=http://prosody:5280" >> .env echo "JVB_PORT=${listen_port}" >> .env +echo "JICOFO_REST_PORT={jicofo_port}" >> .env echo "DISABLE_HTTPS=1" >> .env echo "ENABLE_IPV6=0" >> .env diff --git a/podman-jitsi/vars.sh b/podman-jitsi/vars.sh index 1f2b293..068c6b0 100644 --- a/podman-jitsi/vars.sh +++ b/podman-jitsi/vars.sh @@ -4,6 +4,7 @@ version='stable-9258' ## default vars : override with ENV var listen_if="${GARBAYE_JITSI_ENV_LISTENIF:-127.0.0.1}" listen_port="${GARBAYE_JITSI_ENV_LISTENPORT:-8085}" +jicofo_port="${GARBAYE_JITSI_ENV_JICOFORESTPORT:-8888}" ## mandatory ENV vars envvars='GARBAYE_JITSI_URL' ## internal vars : do not touch