Using wagtail 2.4 and django 2.2 I can't seem to get media files to serve up and in the admin, all the uploaded images disappear.
I have this in my settings.py
MEDIA_ROOT = os.path.join(BASE_DIR, 'media') MEDIA_URL = '/media/'
If I set Debug = True, then the images appear just fine. What setting do I need to set to get my uploaded images to appear in production?