|
17 | 17 | {{ $ENABLE_TALK_WHILE_MUTED := .Env.ENABLE_TALK_WHILE_MUTED | default "false" | toBool -}}
|
18 | 18 | {{ $ENABLE_TCC := .Env.ENABLE_TCC | default "true" | toBool -}}
|
19 | 19 | {{ $ENABLE_TRANSCRIPTIONS := .Env.ENABLE_TRANSCRIPTIONS | default "false" | toBool -}}
|
20 |
| -{{ $P2P_USE_STUN_TURN := .Env.P2P_USE_STUN_TURN | default "true" | toBool -}} |
21 | 20 | {{ $RESOLUTION := .Env.RESOLUTION | default "720" -}}
|
22 | 21 | {{ $RESOLUTION_MIN := .Env.RESOLUTION_MIN | default "180" -}}
|
23 | 22 | {{ $RESOLUTION_WIDTH := .Env.RESOLUTION_WIDTH | default "1280" -}}
|
|
27 | 26 | {{ $START_VIDEO_MUTED := .Env.START_VIDEO_MUTED | default 10 -}}
|
28 | 27 | {{ $TESTING_OCTO_PROBABILITY := .Env.TESTING_OCTO_PROBABILITY | default "0" -}}
|
29 | 28 | {{ $TESTING_CAP_SCREENSHARE_BITRATE := .Env.TESTING_CAP_SCREENSHARE_BITRATE | default "1" -}}
|
30 |
| -{{ $USE_STUN_TURN := .Env.USE_STUN_TURN | default "true" | toBool -}} |
31 | 29 | {{ $XMPP_DOMAIN := .Env.XMPP_DOMAIN -}}
|
32 | 30 | {{ $XMPP_RECORDER_DOMAIN := .Env.XMPP_RECORDER_DOMAIN -}}
|
33 | 31 |
|
@@ -66,7 +64,6 @@ config.startAudioMuted = {{ $START_AUDIO_MUTED }};
|
66 | 64 | if (!config.hasOwnProperty('p2p')) config.p2p = {};
|
67 | 65 |
|
68 | 66 | config.p2p.enabled = {{ $ENABLE_P2P }};
|
69 |
| -config.p2p.useStunTurn = {{ $P2P_USE_STUN_TURN }}; |
70 | 67 |
|
71 | 68 |
|
72 | 69 | // Etherpad
|
@@ -246,9 +243,6 @@ config.openBridgeChannel = '{{ $BRIDGE_CHANNEL }}';
|
246 | 243 | // Enable IPv6 support.
|
247 | 244 | config.useIPv6 = {{ $ENABLE_IPV6 }};
|
248 | 245 |
|
249 |
| -// Use XEP-0215 to fetch STUN and TURN servers. |
250 |
| -config.useStunTurn = {{ $USE_STUN_TURN }}; |
251 |
| - |
252 | 246 | // Transcriptions (subtitles and buttons can be configured in interface_config)
|
253 | 247 | config.transcribingEnabled = {{ $ENABLE_TRANSCRIPTIONS }};
|
254 | 248 |
|
|
0 commit comments