diff --git a/src/rockstor/settings.py b/src/rockstor/settings.py index 3694d6bc3..3b5f93614 100644 --- a/src/rockstor/settings.py +++ b/src/rockstor/settings.py @@ -203,8 +203,11 @@ "huey.contrib.djhuey", ) -# STATICFILES_STORAGE = "pipeline.storage.PipelineManifestStorage" +# https://docs.djangoproject.com/en/4.2/ref/settings/#std-setting-STORAGES STORAGES = { + "default": { + "BACKEND": "django.core.files.storage.FileSystemStorage", + }, "staticfiles": { "BACKEND": "pipeline.storage.PipelineManifestStorage", },