Fixed JVB_PORT and JVB_TCP_PORT variables position

master
Meliurwen 3 years ago
parent 3e9e6f8b53
commit 5809c3920f
Signed by: meliurwen
GPG Key ID: 818A8B35E9F1CE10
  1. 1
      .env.example
  2. 7
      docker-compose.yml
  3. 1
      jvb.env.example

@ -27,6 +27,7 @@ JVB_CONTAINER_NAME=
JVB_RESTART= JVB_RESTART=
# Media port # Media port
JVB_PORT=10000 JVB_PORT=10000
JVB_TCP_PORT=4443
# Public URL for the web service (required) # Public URL for the web service (required)
PUBLIC_URL=https://sub.domain.tld PUBLIC_URL=https://sub.domain.tld

@ -18,6 +18,8 @@ services:
- ${LOCAL_STACK_DIR}/transcripts:/usr/share/jitsi-meet/transcripts:Z - ${LOCAL_STACK_DIR}/transcripts:/usr/share/jitsi-meet/transcripts:Z
- ${LOCAL_STACK_DIR}/web/custom/images:/usr/share/jitsi-meet/images:ro - ${LOCAL_STACK_DIR}/web/custom/images:/usr/share/jitsi-meet/images:ro
- ${LOCAL_STACK_DIR}/web/custom/title.html:/usr/share/jitsi-meet/title.html:ro - ${LOCAL_STACK_DIR}/web/custom/title.html:/usr/share/jitsi-meet/title.html:ro
- ${LOCAL_STACK_DIR}/web/custom/body.html:/usr/share/jitsi-meet/body.html:ro
- ${LOCAL_STACK_DIR}/web/custom/css/custom.css:/usr/share/jitsi-meet/css/custom.css:ro
env_file: env_file:
- web.env - web.env
environment: environment:
@ -100,8 +102,8 @@ services:
container_name: ${JVB_CONTAINER_NAME:-jitsi-jvb} container_name: ${JVB_CONTAINER_NAME:-jitsi-jvb}
restart: ${JVB_RESTART:-unless-stopped} restart: ${JVB_RESTART:-unless-stopped}
ports: ports:
- "${JVB_PORT}:${JVB_PORT}/udp" - ${JVB_PORT}:${JVB_PORT}/udp
- "${JVB_TCP_PORT}:${JVB_TCP_PORT}" - ${JVB_TCP_PORT}:${JVB_TCP_PORT}
networks: networks:
meet.jitsi: meet.jitsi:
aliases: aliases:
@ -118,6 +120,7 @@ services:
- XMPP_SERVER - XMPP_SERVER
- JVB_AUTH_USER - JVB_AUTH_USER
- JVB_BREWERY_MUC - JVB_BREWERY_MUC
- JVB_TCP_PORT
- JVB_PORT - JVB_PORT
- PUBLIC_URL - PUBLIC_URL
depends_on: depends_on:

@ -5,7 +5,6 @@
#DOCKER_HOST_ADDRESS=192.168.1.1 #DOCKER_HOST_ADDRESS=192.168.1.1
# TCP Fallback for Jitsi Videobridge for when UDP isn't available # TCP Fallback for Jitsi Videobridge for when UDP isn't available
JVB_TCP_HARVESTER_DISABLED=true JVB_TCP_HARVESTER_DISABLED=true
JVB_TCP_PORT=4443
JVB_TCP_MAPPED_PORT=4443 JVB_TCP_MAPPED_PORT=4443
# STUN servers used to discover the server's public IP # STUN servers used to discover the server's public IP
JVB_STUN_SERVERS=meet-jit-si-turnrelay.jitsi.net:443 JVB_STUN_SERVERS=meet-jit-si-turnrelay.jitsi.net:443

Loading…
Cancel
Save