web: add ability to configure tokenAuthUrl
This commit is contained in:
@@ -88,6 +88,7 @@ services:
|
|||||||
- XMPP_GUEST_DOMAIN
|
- XMPP_GUEST_DOMAIN
|
||||||
- XMPP_MUC_DOMAIN
|
- XMPP_MUC_DOMAIN
|
||||||
- XMPP_RECORDER_DOMAIN
|
- XMPP_RECORDER_DOMAIN
|
||||||
|
- TOKEN_AUTH_URL
|
||||||
networks:
|
networks:
|
||||||
meet.jitsi:
|
meet.jitsi:
|
||||||
aliases:
|
aliases:
|
||||||
|
|||||||
@@ -335,3 +335,6 @@ JIBRI_LOGS_DIR=/config/logs
|
|||||||
# Container restart policy
|
# Container restart policy
|
||||||
# Defaults to unless-stopped
|
# Defaults to unless-stopped
|
||||||
RESTART_POLICY=unless-stopped
|
RESTART_POLICY=unless-stopped
|
||||||
|
|
||||||
|
# Authenticate using external service or just focus external auth window if there is one already.
|
||||||
|
# TOKEN_AUTH_URL=https://auth.meet.example.com/{room}
|
||||||
|
|||||||
@@ -255,6 +255,11 @@ config.transcribingEnabled = {{ $ENABLE_TRANSCRIPTIONS }};
|
|||||||
config.brandingDataUrl = '{{ .Env.BRANDING_DATA_URL }}';
|
config.brandingDataUrl = '{{ .Env.BRANDING_DATA_URL }}';
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
|
|
||||||
|
{{ if .Env.TOKEN_AUTH_URL -}}
|
||||||
|
// Authenticate using external service or just focus external auth window if there is one already.
|
||||||
|
config.tokenAuthUrl = '{{ .Env.TOKEN_AUTH_URL }}';
|
||||||
|
{{ end -}}
|
||||||
|
|
||||||
|
|
||||||
// Deployment information.
|
// Deployment information.
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user