File tree 2 files changed +4
-1
lines changed 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -285,6 +285,7 @@ services:
285
285
- ENABLE_RECORDING
286
286
- ENABLE_SCTP
287
287
- ENABLE_AUTO_LOGIN
288
+ - JICOFO_AUTH_LIFETIME
288
289
- JICOFO_AUTH_PASSWORD
289
290
- JICOFO_AUTH_TYPE
290
291
- JICOFO_BRIDGE_REGION_GROUPS
Original file line number Diff line number Diff line change 2
2
{{ $JICOFO_ENABLE_AUTH := .Env.JICOFO_ENABLE_AUTH | default $ENABLE_AUTH | toBool -}}
3
3
{{ $AUTH_TYPE := .Env.AUTH_TYPE | default "internal" -}}
4
4
{{ $JICOFO_AUTH_TYPE := .Env.JICOFO_AUTH_TYPE | default $AUTH_TYPE -}}
5
+ {{ $JICOFO_AUTH_LIFETIME := .Env.JICOFO_AUTH_LIFETIME | default "24 hours" -}}
5
6
{{ $ENABLE_SCTP := .Env.ENABLE_SCTP | default "0" | toBool -}}
6
7
{{ $ENABLE_RECORDING := .Env.ENABLE_RECORDING | default "0" | toBool -}}
7
8
{{ $ENABLE_OCTO := .Env.ENABLE_OCTO | default "0" | toBool -}}
@@ -36,7 +37,8 @@ jicofo {
36
37
type = XMPP
37
38
{{ end }}
38
39
login-url = "{{ $XMPP_DOMAIN }}"
39
- enable-auto-login={{ $ENABLE_AUTO_LOGIN }}
40
+ enable-auto-login = {{ $ENABLE_AUTO_LOGIN }}
41
+ authentication-lifetime = {{ $JICOFO_AUTH_LIFETIME }}
40
42
}
41
43
{{ end }}
42
44
You can’t perform that action at this time.
0 commit comments