diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-12-04 10:56:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 10:56:28 -0500 |
commit | 96358cb42410a4be6268eaa3ffec229c550208ea (patch) | |
tree | 5edef7ceff55c023747f5084ea4304649b15781d /docs/sample_config.yaml | |
parent | Pass room_id to get_auth_chain_difference (#8879) (diff) | |
download | synapse-96358cb42410a4be6268eaa3ffec229c550208ea.tar.xz |
Add authentication to replication endpoints. (#8853)
Authentication is done by checking a shared secret provided in the Synapse configuration file.
Diffstat (limited to 'docs/sample_config.yaml')
-rw-r--r-- | docs/sample_config.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index 6dbccf5932..8712c580c0 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -2589,6 +2589,13 @@ opentracing: # #run_background_tasks_on: worker1 +# A shared secret used by the replication APIs to authenticate HTTP requests +# from workers. +# +# By default this is unused and traffic is not authenticated. +# +#worker_replication_secret: "" + # Configuration for Redis when using workers. This *must* be enabled when # using workers (unless using old style direct TCP configuration). |