From 46d62fbdaccabbb860c5f45aecaf628bc52a3d86 Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Fri, 29 Apr 2022 09:55:40 +0200 Subject: [PATCH 1/2] added docs --- docs/src/how-to/install/web-app-settings.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/src/how-to/install/web-app-settings.md b/docs/src/how-to/install/web-app-settings.md index 38e8605d0d..0a19c06c48 100644 --- a/docs/src/how-to/install/web-app-settings.md +++ b/docs/src/how-to/install/web-app-settings.md @@ -30,3 +30,17 @@ webapp: # ... FEATURE_ENFORCE_CONSTANT_BITRATE: "true" ``` + +## Disable media plugins + +Wire is built for media plugins to be active in the chat windows so that users don't have to click the link and leave the app. In some cases it may be desired that these plugins get disabled by default. With this setting all media plugins, including but not limited to YouTube, Spotify, Soundcloud, and Vimeo can be disabled. + +To disable media plugins add the following to your Helm overrides in `values/wire-server/values.yaml`: + +```yaml +webapp: + # ... + envVars: + # ... + FEATURE_ENABLE_MEDIA_EMBEDS: "false" +``` From 1305227411ff37c45d6d0ec56ed2d9fd54a2c4ff Mon Sep 17 00:00:00 2001 From: Leif Battermann Date: Fri, 29 Apr 2022 10:01:12 +0200 Subject: [PATCH 2/2] changelog --- changelog.d/4-docs/pr-2337 | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/4-docs/pr-2337 diff --git a/changelog.d/4-docs/pr-2337 b/changelog.d/4-docs/pr-2337 new file mode 100644 index 0000000000..ee1dad9b58 --- /dev/null +++ b/changelog.d/4-docs/pr-2337 @@ -0,0 +1 @@ +Documentation on how to disable media plugins for the web app