summary refs log tree commit diff
path: root/docs/usage/configuration/config_documentation.md
diff options
context:
space:
mode:
authorV02460 <git@kaialexhiller.de>2024-09-10 19:27:46 +0200
committerGitHub <noreply@github.com>2024-09-10 17:27:46 +0000
commite06e3c40047bb117c2f9f81b62be56a7ff5eb225 (patch)
tree5bfeb782de425494b8e0e8fd9a9626fa03b48145 /docs/usage/configuration/config_documentation.md
parentBump anyhow from 1.0.86 to 1.0.87 (#17685) (diff)
downloadsynapse-e06e3c40047bb117c2f9f81b62be56a7ff5eb225.tar.xz
Add config option turn_shared_secret_path (#17690)
Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
Diffstat (limited to 'docs/usage/configuration/config_documentation.md')
-rw-r--r--docs/usage/configuration/config_documentation.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md

index c18f03d321..282b59dec9 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md
@@ -2316,6 +2316,22 @@ Example configuration: turn_shared_secret: "YOUR_SHARED_SECRET" ``` --- +### `turn_shared_secret_path` + +An alternative to [`turn_shared_secret`](#turn_shared_secret): +allows the shared secret to be specified in an external file. + +The file should be a plain text file, containing only the shared secret. +Synapse reads the shared secret from the given file once at startup. + +Example configuration: +```yaml +turn_shared_secret_path: /path/to/secrets/file +``` + +_Added in Synapse 1.116.0._ + +--- ### `turn_username` and `turn_password` The Username and password if the TURN server needs them and does not use a token.