diff options
author | 2020-02-17 12:01:35 +1000 | |
---|---|---|
committer | 2020-02-17 12:01:35 +1000 | |
commit | 7c865902d645bdae21597b43e52a6e5b70ce18d7 (patch) | |
tree | 59a09e7cb89f985ab997429da869787c820973de | |
parent | Switch the code jam banner for the stream. (diff) |
Change MEDIA_ROOT to /site/media
-rw-r--r-- | pydis_site/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/settings.py b/pydis_site/settings.py index 65ef2463..0a60559d 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -197,7 +197,7 @@ STATICFILES_DIRS = [os.path.join(BASE_DIR, 'pydis_site', 'static')] STATIC_ROOT = env('STATIC_ROOT', default='/app/staticfiles') MEDIA_URL = '/media/' -MEDIA_ROOT = env('MEDIA_ROOT', default='/app/media') +MEDIA_ROOT = env('MEDIA_ROOT', default='/site/media') STATICFILES_FINDERS = [ 'django.contrib.staticfiles.finders.FileSystemFinder', |