diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-02-22 19:54:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 19:54:49 +0000 |
commit | 1b2d6d55c5f4e68053705c46a968e0b2815ab5de (patch) | |
tree | 8c9f3709f214bba2fab7b5f99591f43bdf5b208d /docker | |
parent | Add an `order_by` field to list users' media admin API. (#8978) (diff) | |
download | synapse-1b2d6d55c5f4e68053705c46a968e0b2815ab5de.tar.xz |
Remove vestiges of uploads_path config (#9462)
`uploads_path` was a thing that was never used; most of it was removed in #6628 but a few vestiges remained.
Diffstat (limited to 'docker')
-rw-r--r-- | docker/README.md | 1 | ||||
-rw-r--r-- | docker/conf/homeserver.yaml | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/docker/README.md b/docker/README.md index c8f27b8566..7b138df4d3 100644 --- a/docker/README.md +++ b/docker/README.md @@ -11,7 +11,6 @@ The image also does *not* provide a TURN server. By default, the image expects a single volume, located at ``/data``, that will hold: * configuration files; -* temporary files during uploads; * uploaded media and thumbnails; * the SQLite database if you do not configure postgres; * the appservices configuration. diff --git a/docker/conf/homeserver.yaml b/docker/conf/homeserver.yaml index 2ed570a5d1..0dea62a87d 100644 --- a/docker/conf/homeserver.yaml +++ b/docker/conf/homeserver.yaml @@ -89,7 +89,6 @@ federation_rc_concurrent: 3 ## Files ## media_store_path: "/data/media" -uploads_path: "/data/uploads" max_upload_size: "{{ SYNAPSE_MAX_UPLOAD_SIZE or "50M" }}" max_image_pixels: "32M" dynamic_thumbnails: false |