diff options
author | Yash Jipkate <34203227+YashJipkate@users.noreply.github.com> | 2019-10-30 18:00:20 +0530 |
---|---|---|
committer | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-10-30 12:30:20 +0000 |
commit | 9677613e9cc52af4a31e5f706ad0bec14ca645de (patch) | |
tree | c7b612590e8a8c21082b7bcd0987147653bd776d | |
parent | Fix log line that was printing undefined value (#6278) (diff) | |
download | synapse-9677613e9cc52af4a31e5f706ad0bec14ca645de.tar.xz |
Modify doc to update Google ReCaptcha terms (#6257)
-rw-r--r-- | changelog.d/6257.doc | 1 | ||||
-rw-r--r-- | docs/CAPTCHA_SETUP.md | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/changelog.d/6257.doc b/changelog.d/6257.doc new file mode 100644 index 0000000000..e985afde0e --- /dev/null +++ b/changelog.d/6257.doc @@ -0,0 +1 @@ +Modify CAPTCHA_SETUP.md to update the terms `private key` and `public key` to `secret key` and `site key` respectively. Contributed by Yash Jipkate. diff --git a/docs/CAPTCHA_SETUP.md b/docs/CAPTCHA_SETUP.md index 5f9057530b..331e5d059a 100644 --- a/docs/CAPTCHA_SETUP.md +++ b/docs/CAPTCHA_SETUP.md @@ -4,7 +4,7 @@ The captcha mechanism used is Google's ReCaptcha. This requires API keys from Go ## Getting keys -Requires a public/private key pair from: +Requires a site/secret key pair from: <https://developers.google.com/recaptcha/> @@ -15,8 +15,8 @@ Must be a reCAPTCHA v2 key using the "I'm not a robot" Checkbox option The keys are a config option on the home server config. If they are not visible, you can generate them via `--generate-config`. Set the following value: - recaptcha_public_key: YOUR_PUBLIC_KEY - recaptcha_private_key: YOUR_PRIVATE_KEY + recaptcha_public_key: YOUR_SITE_KEY + recaptcha_private_key: YOUR_SECRET_KEY In addition, you MUST enable captchas via: |