Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/4-docs/pr-2337
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Documentation on how to disable media plugins for the web app
14 changes: 14 additions & 0 deletions docs/src/how-to/install/web-app-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```