|
# Directory where all configuration will be stored. |
|
CONFIG=./jitsi-meet-cfg |
|
|
|
# System time zone. |
|
TZ=Europe/Amsterdam |
|
|
|
# Public URL for the web service. |
|
PUBLIC_URL=https://mydomain.org |
|
|
|
# Virtual host for nginx proxy |
|
VIRTUAL_HOST=mydomain.org |
|
|
|
# lets encrypt proxy |
|
LETSENCRYPT_HOST=mydomain.org |
|
LETSENCRYPT_EMAIL=my@mail.org |
|
|
|
# IP address of the Docker host. See the "Running behind NAT or on a LAN environment" section |
|
# in the README. |
|
DOCKER_HOST_ADDRESS=12.34.56.789 |
|
|
|
# Enable authentication. |
|
ENABLE_AUTH=1 |
|
|
|
# Enable guest access. |
|
ENABLE_GUESTS=1 |
|
|
|
# Select authentication type: internal, jwt or ldap |
|
AUTH_TYPE=internal |
|
|
|
# Internal XMPP domain. |
|
XMPP_DOMAIN=meet.jitsi |
|
|
|
# Internal XMPP server |
|
XMPP_SERVER=xmpp.meet.jitsi |
|
|
|
# Internal XMPP server URL |
|
XMPP_BOSH_URL_BASE=http://xmpp.meet.jitsi:5280 |
|
|
|
# Internal XMPP domain for authenticated services. |
|
XMPP_AUTH_DOMAIN=auth.meet.jitsi |
|
|
|
# XMPP domain for the MUC. |
|
XMPP_MUC_DOMAIN=muc.meet.jitsi |
|
|
|
# XMPP domain for the internal MUC used for jibri, jigasi and jvb pools. |
|
XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi |
|
|
|
# XMPP domain for unauthenticated users. |
|
XMPP_GUEST_DOMAIN=guest.meet.jitsi |
|
|
|
# Custom Prosody modules for XMPP_DOMAIN (comma separated) |
|
XMPP_MODULES= |
|
|
|
# Custom Prosody modules for MUC component (comma separated) |
|
XMPP_MUC_MODULES= |
|
|
|
# Custom Prosody modules for internal MUC component (comma separated) |
|
XMPP_INTERNAL_MUC_MODULES= |
|
|
|
# MUC for the JVB pool. |
|
JVB_BREWERY_MUC=jvbbrewery |
|
|
|
# XMPP user for JVB client connections. |
|
JVB_AUTH_USER=jvb |
|
|
|
# XMPP password for JVB client connections. |
|
JVB_AUTH_PASSWORD=passw0rd |
|
|
|
# STUN servers used to discover the server's public IP. |
|
JVB_STUN_SERVERS=meet-jit-si-turnrelay.jitsi.net:443 |
|
|
|
# Media port for the Jitsi Videobridge |
|
JVB_PORT=10000 |
|
|
|
# TCP Fallback for Jitsi Videobridge for when UDP isn't available |
|
JVB_TCP_HARVESTER_DISABLED=true |
|
JVB_TCP_PORT=4443 |
|
|
|
# XMPP component password for Jicofo. |
|
JICOFO_COMPONENT_SECRET=s3cr37 |
|
|
|
# XMPP user for Jicofo client connections. NOTE: this option doesn't currently work due to a bug. |
|
JICOFO_AUTH_USER=focus |
|
|
|
# XMPP password for Jicofo client connections. |
|
JICOFO_AUTH_PASSWORD=passw0rd |
|
|
|
# Base URL of Jicofo's reservation REST API |
|
#JICOFO_RESERVATION_REST_BASE_URL=http://reservation.example.com |
|
|
|
# XMPP user for Jigasi MUC client connections. |
|
JIGASI_XMPP_USER=jigasi |
|
|
|
# XMPP password for Jigasi MUC client connections. |
|
JIGASI_XMPP_PASSWORD=passw0rd |
|
|
|
# MUC name for the Jigasi pool. |
|
JIGASI_BREWERY_MUC=jigasibrewery |
|
|
|
# Minimum port for media used by Jigasi. |
|
JIGASI_PORT_MIN=20000 |
|
|
|
# Maximum port for media used by Jigasi. |
|
JIGASI_PORT_MAX=20050 |
|
|
|
# XMPP domain for the jibri recorder |
|
XMPP_RECORDER_DOMAIN=recorder.meet.jitsi |
|
|
|
# XMPP recorder user for Jibri client connections. |
|
JIBRI_RECORDER_USER=recorder |
|
|
|
# XMPP recorder password for Jibri client connections. |
|
JIBRI_RECORDER_PASSWORD=passw0rd |
|
|
|
# Directory for recordings inside Jibri container. |
|
JIBRI_RECORDING_DIR=/config/recordings |
|
|
|
# The finalizing script. Will run after recording is complete. |
|
JIBRI_FINALIZE_RECORDING_SCRIPT_PATH=/config/finalize.sh |
|
|
|
# XMPP user for Jibri client connections. |
|
JIBRI_XMPP_USER=jibri |
|
|
|
# XMPP password for Jibri client connections. |
|
JIBRI_XMPP_PASSWORD=passw0rd |
|
|
|
# MUC name for the Jibri pool. |
|
JIBRI_BREWERY_MUC=jibribrewery |
|
|
|
# MUC connection timeout |
|
JIBRI_PENDING_TIMEOUT=90 |
|
|
|
# When jibri gets a request to start a service for a room, the room |
|
# jid will look like: roomName@optional.prefixes.subdomain.xmpp_domain |
|
# We'll build the url for the call by transforming that into: |
|
# https://xmpp_domain/subdomain/roomName |
|
# So if there are any prefixes in the jid (like jitsi meet, which |
|
# has its participants join a muc at conference.xmpp_domain) then |
|
# list that prefix here so it can be stripped out to generate |
|
# the call url correctly. |
|
JIBRI_STRIP_DOMAIN_JID=muc |
|
|
|
# Directory for logs inside Jibri container. |
|
JIBRI_LOGS_DIR=/config/logs |
|
|
|
# Disable HTTPS. This can be useful if TLS connections are going to be handled outside of this setup. |
|
DISABLE_HTTPS=1 |