diff options
author | Sumner Evans <me@sumnerevans.com> | 2021-11-01 05:35:55 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 11:35:55 +0000 |
commit | ece84f2c450d986e54acc80971225fb02f4e1d05 (patch) | |
tree | e107d9590f3ed5965a6756cc9eb599058ecb0905 /docs/CAPTCHA_SETUP.md | |
parent | Add metrics to the threadpools (#11178) (diff) | |
download | synapse-ece84f2c450d986e54acc80971225fb02f4e1d05.tar.xz |
Improve code formatting and fix a few typos in docs (#11221)
* Labeled a lot more code blocks with the appropriate type * Fixed a couple of minor typos (missing/extraneous commas) Signed-off-by: Sumner Evans <me@sumnerevans.com>
Diffstat (limited to 'docs/CAPTCHA_SETUP.md')
-rw-r--r-- | docs/CAPTCHA_SETUP.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CAPTCHA_SETUP.md b/docs/CAPTCHA_SETUP.md index fabdd7b726..49419ce8df 100644 --- a/docs/CAPTCHA_SETUP.md +++ b/docs/CAPTCHA_SETUP.md @@ -15,12 +15,12 @@ in `homeserver.yaml`, to the list of authorized domains. If you have not set 1. Agree to the terms of service and submit. 1. Copy your site key and secret key and add them to your `homeserver.yaml` configuration file - ``` + ```yaml recaptcha_public_key: YOUR_SITE_KEY recaptcha_private_key: YOUR_SECRET_KEY ``` 1. Enable the CAPTCHA for new registrations - ``` + ```yaml enable_registration_captcha: true ``` 1. Go to the settings page for the CAPTCHA you just created |