diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-08-25 17:27:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 16:27:46 +0000 |
commit | d092e6f32a1a3d79337774746720a73762a35e8e (patch) | |
tree | f99022c1986f7515e07036254636f243c56539ee /docs | |
parent | register_new_matrix_user: read server url from config (#13616) (diff) | |
download | synapse-d092e6f32a1a3d79337774746720a73762a35e8e.tar.xz |
Support `registration_shared_secret` in a file (#13614)
A new `registration_shared_secret_path` option. This is kinda handy for k8s deployments and things.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/usage/configuration/config_documentation.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/usage/configuration/config_documentation.md b/docs/usage/configuration/config_documentation.md index 8ae018e628..e9ab58854e 100644 --- a/docs/usage/configuration/config_documentation.md +++ b/docs/usage/configuration/config_documentation.md @@ -2124,10 +2124,28 @@ registration_requires_token: true If set, allows registration of standard or admin accounts by anyone who has the shared secret, even if registration is otherwise disabled. +See also [`registration_shared_secret_path`](#registration_shared_secret_path). + Example configuration: ```yaml registration_shared_secret: <PRIVATE STRING> ``` + +--- +### `registration_shared_secret_path` + +An alternative to [`registration_shared_secret`](#registration_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. + +Example configuration: +```yaml +registration_shared_secret_file: /path/to/secrets/file +``` + +_Added in Synapse 1.67.0._ + --- ### `bcrypt_rounds` |