Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/18684.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add `recaptcha_private_key_path` and `recaptcha_public_key_path` config option.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same changelog as #17984 so they merge

4 changes: 2 additions & 2 deletions docs/usage/configuration/config_documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -2363,7 +2363,7 @@ recaptcha_public_key: YOUR_PUBLIC_KEY

The file should be a plain text file, containing only the public key. Synapse reads the public key from the given file once at startup.

_Added in Synapse 1.134.0._
_Added in Synapse 1.135.0._

Defaults to `null`.

Expand All @@ -2387,7 +2387,7 @@ recaptcha_private_key: YOUR_PRIVATE_KEY

The file should be a plain text file, containing only the private key. Synapse reads the private key from the given file once at startup.

_Added in Synapse 1.134.0._
_Added in Synapse 1.135.0._

Defaults to `null`.

Expand Down
4 changes: 2 additions & 2 deletions schema/synapse-config.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2703,7 +2703,7 @@ properties:
Synapse reads the public key from the given file once at startup.


_Added in Synapse 1.134.0._
_Added in Synapse 1.135.0._
default: null
examples:
- /path/to/key/file
Expand All @@ -2726,7 +2726,7 @@ properties:
Synapse reads the private key from the given file once at startup.


_Added in Synapse 1.134.0._
_Added in Synapse 1.135.0._
default: null
examples:
- /path/to/key/file
Expand Down
Loading