diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-02-20 11:10:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-20 11:10:33 +0000 |
commit | 86920ac2664258a0090f856b49efa5033b680943 (patch) | |
tree | d59fcc39494a96f700849ac52de920414e536c95 /synapse/config/captcha.py | |
parent | Fix registration on workers (#4682) (diff) | |
parent | changelog (diff) | |
download | synapse-86920ac2664258a0090f856b49efa5033b680943.tar.xz |
Merge pull request #4678 from matrix-org/rav/tls_install_instructions
Attempt to clarify installation/config instructions
Diffstat (limited to 'synapse/config/captcha.py')
-rw-r--r-- | synapse/config/captcha.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/config/captcha.py b/synapse/config/captcha.py index 7ba0c2de6a..4064891ffb 100644 --- a/synapse/config/captcha.py +++ b/synapse/config/captcha.py @@ -30,14 +30,17 @@ class CaptchaConfig(Config): # See docs/CAPTCHA_SETUP for full details of configuring this. # This Home Server's ReCAPTCHA public key. + # recaptcha_public_key: "YOUR_PUBLIC_KEY" # This Home Server's ReCAPTCHA private key. + # recaptcha_private_key: "YOUR_PRIVATE_KEY" # Enables ReCaptcha checks when registering, preventing signup # unless a captcha is answered. Requires a valid ReCaptcha # public/private key. + # enable_registration_captcha: False # A secret key used to bypass the captcha test entirely. |