diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-08-13 21:49:28 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-13 21:49:28 +1000 |
commit | 0b6fbb28a858f56766c77eedede7d1dade9e9b1c (patch) | |
tree | 57915f5d49e201849c2656d05ec00b7a0f58e9a8 /docs/workers.rst | |
parent | Merge pull request #5836 from matrix-org/erikj/lower_bound_ttl_well_known (diff) | |
download | synapse-0b6fbb28a858f56766c77eedede7d1dade9e9b1c.tar.xz |
Don't load the media repo when configured to use an external media repo (#5754)
Diffstat (limited to 'docs/workers.rst')
-rw-r--r-- | docs/workers.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/workers.rst b/docs/workers.rst index 7b2d2db533..e11e117418 100644 --- a/docs/workers.rst +++ b/docs/workers.rst @@ -206,6 +206,13 @@ Handles the media repository. It can handle all endpoints starting with:: /_matrix/media/ +And the following regular expressions matching media-specific administration +APIs:: + + ^/_synapse/admin/v1/purge_media_cache$ + ^/_synapse/admin/v1/room/.*/media$ + ^/_synapse/admin/v1/quarantine_media/.*$ + You should also set ``enable_media_repo: False`` in the shared configuration file to stop the main synapse running background jobs related to managing the media repository. |