diff options
author | Matthew Hodgson <matthew@arasphere.net> | 2019-02-25 19:15:36 +0000 |
---|---|---|
committer | Amber Brown <hawkowl@atleastfornow.net> | 2019-02-25 11:15:36 -0800 |
commit | 70ea2f4e1df41458532c7964f4f707e04810e619 (patch) | |
tree | 83dea8691f041c13a6fa29a1cd8a45480449aab5 /synapse/config | |
parent | Merge pull request #4737 from matrix-org/erikj/failure_log_tb (diff) | |
download | synapse-70ea2f4e1df41458532c7964f4f707e04810e619.tar.xz |
switch from google.com to recaptcha.net for reCAPTCHA (#4731)
* add trivial clarification about jemalloc * switch from google.com to recaptcha.net because https://developers.google.com/recaptcha/docs/faq#can-i-use-recaptcha-globally
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/captcha.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/config/captcha.py b/synapse/config/captcha.py index 4064891ffb..d25196be08 100644 --- a/synapse/config/captcha.py +++ b/synapse/config/captcha.py @@ -47,5 +47,5 @@ class CaptchaConfig(Config): #captcha_bypass_secret: "YOUR_SECRET_HERE" # The API endpoint to use for verifying m.login.recaptcha responses. - recaptcha_siteverify_api: "https://www.google.com/recaptcha/api/siteverify" + recaptcha_siteverify_api: "https://www.recaptcha.net/recaptcha/api/siteverify" """ |