From d398dc10fe075d8317c495005f34dacb9d158e42 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Mon, 4 Nov 2024 19:03:46 +0900 Subject: [PATCH] Update docs/registering-users.md: add configuration for enabling public user registration on Dendrite Per the suggestion on https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2545 Signed-off-by: Suguru Hirahara --- docs/registering-users.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/registering-users.md b/docs/registering-users.md index acb86a908..723736ac1 100644 --- a/docs/registering-users.md +++ b/docs/registering-users.md @@ -100,10 +100,18 @@ If you'd rather **keep your server private** (public registration closed, as is To **open up user registration publicly** (usually **not recommended**), add the following configuration to your `inventory/host_vars/matrix.example.com/vars.yml` file: +For Synapse: + ```yaml matrix_synapse_enable_registration: true ``` +For Dendrite: + +```yaml +matrix_dendrite_client_api_registration_disabled: true +``` + After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all` If you're opening up registrations publicly like this, you might also wish to [configure CAPTCHA protection](configuring-captcha.md).