Skip to content

Commit 4872471

Browse files
fix(prosody): tpl errors on container startup due to missing variables (jitsi#1924)
1 parent 8c7e830 commit 4872471

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

prosody/rootfs/defaults/prosody.cfg.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{{ $C2S_REQUIRE_ENCRYPTION := .Env.PROSODY_C2S_REQUIRE_ENCRYPTION | default "1" | toBool -}}
22
{{ $ENABLE_AUTH := .Env.ENABLE_AUTH | default "0" | toBool -}}
33
{{ $ENABLE_GUEST_DOMAIN := and $ENABLE_AUTH (.Env.ENABLE_GUESTS | default "0" | toBool) -}}
4+
{{ $ENABLE_IPV6 := .Env.ENABLE_IPV6 | default "true" | toBool -}}
5+
{{ $ENABLE_RECORDING := .Env.ENABLE_RECORDING | default "0" | toBool -}}
6+
{{ $ENABLE_TRANSCRIPTIONS := .Env.ENABLE_TRANSCRIPTIONS | default "0" | toBool -}}
47
{{ $ENABLE_VISITORS := .Env.ENABLE_VISITORS | default "0" | toBool -}}
58
{{ $ENABLE_S2S := or $ENABLE_VISITORS ( .Env.PROSODY_ENABLE_S2S | default "0" | toBool ) }}
6-
{{ $ENABLE_IPV6 := .Env.ENABLE_IPV6 | default "true" | toBool -}}
79
{{ $GC_TYPE := .Env.GC_TYPE | default "incremental" -}}
810
{{ $GC_INC_TH := .Env.GC_INC_TH | default 400 -}}
911
{{ $GC_INC_SPEED := .Env.GC_INC_SPEED | default 250 -}}
@@ -31,6 +33,7 @@
3133
{{ $XMPP_GUEST_DOMAIN := .Env.XMPP_GUEST_DOMAIN | default "guest.meet.jitsi" -}}
3234
{{ $XMPP_MUC_DOMAIN := .Env.XMPP_MUC_DOMAIN | default "muc.meet.jitsi" -}}
3335
{{ $XMPP_PORT := .Env.XMPP_PORT | default "5222" -}}
36+
{{ $XMPP_RECORDER_DOMAIN := .Env.XMPP_RECORDER_DOMAIN | default "recorder.meet.jitsi" -}}
3437

3538
-- Prosody Example Configuration File
3639
--

0 commit comments

Comments
 (0)