Przeglądaj źródła

feat(jicofo) add config parameter for ENABLE_MODERATOR_CHECKS

Dimosthenis Nikoudis 7 miesięcy temu
rodzic
commit
b726312
2 zmienionych plików z 5 dodań i 0 usunięć
  1. 1 0
      docker-compose.yml
  2. 4 0
      jicofo/rootfs/defaults/jicofo.conf

+ 1 - 0
docker-compose.yml

@@ -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

+ 4 - 0
jicofo/rootfs/defaults/jicofo.conf

@@ -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 }}