File tree 2 files changed +8
-1
lines changed 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,9 @@ services:
12
12
- ${CONFIG}/transcripts:/tmp/transcripts:Z
13
13
environment :
14
14
- ENABLE_AUTH
15
+ - ENABLE_GUESTS
15
16
- XMPP_AUTH_DOMAIN
17
+ - XMPP_GUEST_DOMAIN
16
18
- XMPP_MUC_DOMAIN
17
19
- XMPP_INTERNAL_MUC_DOMAIN
18
20
- XMPP_SERVER
Original file line number Diff line number Diff line change @@ -116,9 +116,14 @@ org.jitsi.jigasi.xmpp.acc.IM_DISABLED=true
116
116
org.jitsi.jigasi.xmpp.acc.SERVER_STORED_INFO_DISABLED =true
117
117
org.jitsi.jigasi.xmpp.acc.IS_FILE_TRANSFER_DISABLED =true
118
118
{{ if .Env.ENABLE_AUTH | default "0" | toBool }}
119
+ {{ if .Env.ENABLE_GUESTS | default "0" | toBool }}
120
+ org.jitsi.jigasi.xmpp.acc.USER_ID ={{ .Env.JIGASI_XMPP_USER }}@{{ .Env.XMPP_GUEST_DOMAIN }}
121
+ org.jitsi.jigasi.xmpp.acc.ANONYMOUS_AUTH =true
122
+ {{ else }}
119
123
org.jitsi.jigasi.xmpp.acc.USER_ID ={{ .Env.JIGASI_XMPP_USER }}@{{ .Env.XMPP_AUTH_DOMAIN }}
120
- org.jitsi.jigasi.xmpp.acc.PASS ={{ .Env.JIGASI_XMPP_PASSWORD }}
121
124
org.jitsi.jigasi.xmpp.acc.ANONYMOUS_AUTH =false
125
+ {{ end }}
126
+ org.jitsi.jigasi.xmpp.acc.PASS ={{ .Env.JIGASI_XMPP_PASSWORD }}
122
127
org.jitsi.jigasi.xmpp.acc.ALLOW_NON_SECURE =true
123
128
{{ end }}
124
129
You can’t perform that action at this time.
0 commit comments