Skip to content

Commit

Permalink
Added missing default storage backend in prod settings
Browse files Browse the repository at this point in the history
  • Loading branch information
bmispelon committed Jun 15, 2024
1 parent c16846a commit 1c233fd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions djangoproject/settings/prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
SESSION_COOKIE_SECURE = True

STORAGES = {
"default": {
"BACKEND": "django.core.files.storage.FileSystemStorage",
},
"staticfiles": {
"BACKEND": "django.contrib.staticfiles.storage.ManifestStaticFilesStorage",
},
Expand Down

0 comments on commit 1c233fd

Please sign in to comment.