部署后未加载 Wagtail 图像

Wagtail Images Not Loading Once Deployed

我不太清楚发生了什么,但我的图像在我的本地开发服务器上加载得很好。但是,一旦我部署,图像将不会加载。我检查了 URL 似乎是正确的。我不确定这里发生了什么。

base.py

MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'

HTML

{% load wagtailcore_tags wagtailimages_tags %}
...
{% with post.main_image as main_image %}
    {% if main_image %}{% image main_image fill-400x200 %}{% endif %}
{% endwith %}

元素的页面源代码

<img alt="photo" src="/media/images/Lily.2e16d0ba.fill-400x200.jpg" width="400" height="201">

我很困惑,我真的找不到太多关于这个话题的信息。我是唯一 运行 参与此问题的人吗?任何帮助将不胜感激。

在开发期间(当您使用 ./manage.py runserver 并将 DEBUG 设置设置为 True 时),Django serves static files itself as a convenience. In production, it's up to you to configure your web server to serve static files from /media and /static: https://docs.djangoproject.com/en/1.10/howto/static-files/deployment/

这是出于性能和安全原因 - 如果已经有一个已针对该任务适当调整的网络服务器,那么通过 Python 代码提供静态文件是没有意义的。