File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ services:
187
187
- ENABLE_CODEC_VP8
188
188
- ENABLE_CODEC_VP9
189
189
- ENABLE_CODEC_H264
190
+ - ENABLE_OCTO
190
191
- ENABLE_RECORDING
191
192
- ENABLE_SCTP
192
193
- JICOFO_AUTH_USER
Original file line number Diff line number Diff line change 2
2
{{ $ENABLE_SCTP := .Env.ENABLE_SCTP | default "0" | toBool }}
3
3
{{ $AUTH_TYPE := .Env.AUTH_TYPE | default "internal" }}
4
4
{{ $ENABLE_RECORDING := .Env.ENABLE_RECORDING | default "0" | toBool }}
5
+ {{ $ENABLE_OCTO := .Env.ENABLE_OCTO | default "0" | toBool }}
5
6
6
7
jicofo {
7
8
{{ if $ENABLE_AUTH }}
@@ -114,6 +115,12 @@ jicofo {
114
115
{{ end }}
115
116
116
117
octo {
118
+ // Whether or not to use Octo. Note that when enabled, its use will be determined by
119
+ // $jicofo.bridge.selection-strategy. There's a corresponding flag in the JVB and these
120
+ // two MUST be in sync (otherwise bridges will crash because they won't know how to
121
+ // deal with octo channels).
122
+ enabled = {{ $ENABLE_OCTO }}
123
+
117
124
id = "{{ .Env.JICOFO_SHORT_ID | default "1" }}"
118
125
}
119
126
You can’t perform that action at this time.
0 commit comments