Skip to content

Commit 991f695

Browse files
committed
web: remove no longer needed settings
They default to true now and they have been removed.
1 parent 8b7cbc3 commit 991f695

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ services:
7171
- MATOMO_SITE_ID
7272
- MICROSOFT_API_APP_CLIENT_ID
7373
- NGINX_RESOLVER
74-
- P2P_USE_STUN_TURN
7574
- PEOPLE_SEARCH_URL
7675
- RESOLUTION
7776
- RESOLUTION_MIN
@@ -83,7 +82,6 @@ services:
8382
- START_VIDEO_MUTED
8483
- TESTING_CAP_SCREENSHARE_BITRATE
8584
- TESTING_OCTO_PROBABILITY
86-
- USE_STUN_TURN
8785
- XMPP_AUTH_DOMAIN
8886
- XMPP_BOSH_URL_BASE
8987
- XMPP_DOMAIN

web/rootfs/defaults/settings-config.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
{{ $ENABLE_TALK_WHILE_MUTED := .Env.ENABLE_TALK_WHILE_MUTED | default "false" | toBool -}}
1818
{{ $ENABLE_TCC := .Env.ENABLE_TCC | default "true" | toBool -}}
1919
{{ $ENABLE_TRANSCRIPTIONS := .Env.ENABLE_TRANSCRIPTIONS | default "false" | toBool -}}
20-
{{ $P2P_USE_STUN_TURN := .Env.P2P_USE_STUN_TURN | default "true" | toBool -}}
2120
{{ $RESOLUTION := .Env.RESOLUTION | default "720" -}}
2221
{{ $RESOLUTION_MIN := .Env.RESOLUTION_MIN | default "180" -}}
2322
{{ $RESOLUTION_WIDTH := .Env.RESOLUTION_WIDTH | default "1280" -}}
@@ -27,7 +26,6 @@
2726
{{ $START_VIDEO_MUTED := .Env.START_VIDEO_MUTED | default 10 -}}
2827
{{ $TESTING_OCTO_PROBABILITY := .Env.TESTING_OCTO_PROBABILITY | default "0" -}}
2928
{{ $TESTING_CAP_SCREENSHARE_BITRATE := .Env.TESTING_CAP_SCREENSHARE_BITRATE | default "1" -}}
30-
{{ $USE_STUN_TURN := .Env.USE_STUN_TURN | default "true" | toBool -}}
3129
{{ $XMPP_DOMAIN := .Env.XMPP_DOMAIN -}}
3230
{{ $XMPP_RECORDER_DOMAIN := .Env.XMPP_RECORDER_DOMAIN -}}
3331

@@ -66,7 +64,6 @@ config.startAudioMuted = {{ $START_AUDIO_MUTED }};
6664
if (!config.hasOwnProperty('p2p')) config.p2p = {};
6765

6866
config.p2p.enabled = {{ $ENABLE_P2P }};
69-
config.p2p.useStunTurn = {{ $P2P_USE_STUN_TURN }};
7067

7168

7269
// Etherpad
@@ -246,9 +243,6 @@ config.openBridgeChannel = '{{ $BRIDGE_CHANNEL }}';
246243
// Enable IPv6 support.
247244
config.useIPv6 = {{ $ENABLE_IPV6 }};
248245

249-
// Use XEP-0215 to fetch STUN and TURN servers.
250-
config.useStunTurn = {{ $USE_STUN_TURN }};
251-
252246
// Transcriptions (subtitles and buttons can be configured in interface_config)
253247
config.transcribingEnabled = {{ $ENABLE_TRANSCRIPTIONS }};
254248

0 commit comments

Comments
 (0)