1
0
mirror of https://github.com/etesync/server synced 2025-06-30 20:32:33 +00: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
parent ab6c2821ab
commit 62a225fc9c

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: