0
0
mirror of https://github.com/etesync/server.git synced 2024-09-20 04:42:26 +02:00

Fix sendfile settings

* set SENDFILE_ROOT to the filesystem path for media, not the URL
  component
* use the correct import path to the sendfile backend
This commit is contained in:
Dustin J. Mitchell 2021-04-17 15:22:09 +00:00 committed by Tom Hacohen
parent 7c58540409
commit 43d5af32d7

View File

@ -166,8 +166,8 @@ if any(os.path.isfile(x) for x in config_locations):
ETEBASE_CREATE_USER_FUNC = "django_etebase.utils.create_user_blocked"
# Efficient file streaming (for large files)
SENDFILE_BACKEND = "django_etebase.sendfile.backends.simple"
SENDFILE_ROOT = MEDIA_URL
SENDFILE_BACKEND = "etebase_fastapi.sendfile.backends.simple"
SENDFILE_ROOT = MEDIA_ROOT
# Make an `etebase_server_settings` module available to override settings.
try: