Skip to content

Commit 6b69576

Browse files
authored
web: add ability to configure tokenAuthUrl
1 parent e5746ae commit 6b69576

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ services:
8888
- XMPP_GUEST_DOMAIN
8989
- XMPP_MUC_DOMAIN
9090
- XMPP_RECORDER_DOMAIN
91+
- TOKEN_AUTH_URL
9192
networks:
9293
meet.jitsi:
9394
aliases:

env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,3 +335,6 @@ JIBRI_LOGS_DIR=/config/logs
335335
# Container restart policy
336336
# Defaults to unless-stopped
337337
RESTART_POLICY=unless-stopped
338+
339+
# Authenticate using external service or just focus external auth window if there is one already.
340+
# TOKEN_AUTH_URL=https://auth.meet.example.com/{room}

web/rootfs/defaults/settings-config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,11 @@ config.transcribingEnabled = {{ $ENABLE_TRANSCRIPTIONS }};
255255
config.brandingDataUrl = '{{ .Env.BRANDING_DATA_URL }}';
256256
{{ end -}}
257257

258+
{{ if .Env.TOKEN_AUTH_URL -}}
259+
// Authenticate using external service or just focus external auth window if there is one already.
260+
config.tokenAuthUrl = '{{ .Env.TOKEN_AUTH_URL }}';
261+
{{ end -}}
262+
258263

259264
// Deployment information.
260265
//

0 commit comments

Comments
 (0)