We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe5b8b commit 2d9c3ccCopy full SHA for 2d9c3cc
web/rootfs/defaults/system-config.js
@@ -1,3 +1,4 @@
1
+{{ $CONFIG_PREFIX := .Env.WEB_CONFIG_PREFIX | default "// Jitsi Meet configuration.\n" -}}
2
{{ $BOSH_RELATIVE := .Env.BOSH_RELATIVE | default "false" | toBool -}}
3
{{ $ENABLE_AUTH := .Env.ENABLE_AUTH | default "false" | toBool -}}
4
{{ $ENABLE_AUTH_DOMAIN := .Env.ENABLE_AUTH_DOMAIN | default "true" | toBool -}}
@@ -12,7 +13,7 @@
12
13
{{ $XMPP_MUC_DOMAIN_PREFIX := (split "." $XMPP_MUC_DOMAIN)._0 -}}
14
{{ $JVB_PREFER_SCTP := .Env.JVB_PREFER_SCTP | default "1" | toBool -}}
15
-// Jitsi Meet configuration.
16
+{{ join "\n" (splitList "\\n" $CONFIG_PREFIX) }}
17
var config = {};
18
19
config.hosts = {};
0 commit comments