feat(jicofo) add config parameter for ENABLE_MODERATOR_CHECKS

pull/1798/merge
Dimosthenis Nikoudis 1 month ago committed by GitHub
parent 2d39624b5f
commit b726312ee7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      docker-compose.yml
  2. 4
      jicofo/rootfs/defaults/jicofo.conf

@ -339,6 +339,7 @@ services:
- BRIDGE_STRESS_THRESHOLD
- ENABLE_AUTH
- ENABLE_AUTO_OWNER
- ENABLE_MODERATOR_CHECKS
- ENABLE_CODEC_VP8
- ENABLE_CODEC_VP9
- ENABLE_CODEC_AV1

@ -142,6 +142,10 @@ jicofo {
enable-auto-owner = {{ .Env.ENABLE_AUTO_OWNER | toBool }}
{{ end }}
{{ if .Env.ENABLE_MODERATOR_CHECKS }}
enable-moderator-checks = {{ .Env.ENABLE_MODERATOR_CHECKS | toBool }}
{{ end }}
{{ if .Env.JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT }}
initial-timeout = "{{ .Env.JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT }}"
{{ end }}

Loading…
Cancel
Save