2020-07-03 23:33:25 +00:00
|
|
|
(Adapted from the [upstream project](https://github.com/matrix-org/synapse/blob/develop/docs/CAPTCHA_SETUP.md))
|
|
|
|
|
|
|
|
# Overview
|
|
|
|
Captcha can be enabled for this home server. This file explains how to do that.
|
2020-07-04 06:35:20 +00:00
|
|
|
The captcha mechanism used is Google's [ReCaptcha](https://www.google.com/recaptcha/). This requires API keys from Google.
|
2020-07-03 23:33:25 +00:00
|
|
|
|
|
|
|
## Getting keys
|
|
|
|
|
|
|
|
Requires a site/secret key pair from:
|
|
|
|
|
2020-07-04 00:10:00 +00:00
|
|
|
<http://www.google.com/recaptcha/admin>
|
2020-07-03 23:33:25 +00:00
|
|
|
|
2020-07-04 06:35:20 +00:00
|
|
|
Must be a reCAPTCHA **v2** key using the "I'm not a robot" Checkbox option
|
2020-07-03 23:33:25 +00:00
|
|
|
|
|
|
|
## Setting ReCaptcha Keys
|
|
|
|
|
|
|
|
Once registered as above, set the following values:
|
|
|
|
|
2020-07-04 06:35:20 +00:00
|
|
|
```yaml
|
|
|
|
matrix_synapse_enable_registration_captcha: true
|
|
|
|
matrix_synapse_recaptcha_public_key: 'YOUR_SITE_KEY'
|
|
|
|
matrix_synapse_recaptcha_private_key: 'YOUR_SECRET_KEY'
|
|
|
|
```
|