python - django/whitenoise 存储后端导致错误

标签 python django heroku django-staticfiles django-storage

我在调试关闭时在 heroku 上运行我的 django 应用程序时遇到了 500 错误。 在使用 rollbar 了解错误发生的原因后,它报告了以下内容:

ValueError: The file 'media/img 1.jpg' could not be found with <whitenoise.storage.CompressedManifestStaticFilesStorage object at 0x7f795706f550>.

我发现它与 STATICFILES_STORAGE 设置有关,删除它并使用默认的 django STATICFILES_STORAGE ='django.contrib.staticfiles.storage.StaticFilesStorage' 设置,它的工作原理。但是这三个中的任何一个都不起作用,并且都会导致相同的错误:

STATICFILES_STORAGE ='django.contrib.staticfiles.storage.ManifestStaticFilesStorage'
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'

whitenoise troubleshooting 它说尝试使用 django 的 manifestStaticFiles 存储,如果问题仍然存在,那么问题出在 django 而不是 whitenoise。

这些是我的生产设置:

from django.conf import settings

import os

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
    'django.middleware.security.SecurityMiddleware',
    'whitenoise.middleware.WhiteNoiseMiddleware',
    'rollbar.contrib.django.middleware.RollbarNotifierMiddleware',
)


DEBUG = False

# Email debugging configuration

ADMINS = (
    ('david', 'davidsidf@gmail.com'),
)

EMAIL_USE_TLS = True

EMAIL_HOST = 'smtp.gmail.com'

EMAIL_HOST_USER = 'davidsidf@gmail.com'

EMAIL_HOST_PASSWORD = '*******'

EMAIL_PORT = 587


# Honor the 'X-Forwarded-Proto' header for request.is_secure()

SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')

ALLOWED_HOSTS = ['evening-garden-60868.herokuapp.com']

ROLLBAR = {
    'access_token': '*******************',
    'environment': 'development' if DEBUG else 'production',
    'branch': 'master',
    'root': '/absolute/path/to/code/root',
}

STATICFILES_DIRS = (
    os.path.join(BASE_DIR,"studio", "static"),
 )

STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'

最佳答案

我认为您正在使用 static 辅助函数提供媒体文件,如下所示:

urlpatterns = [
   ...
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

媒体文件无法提供,因为您在 project/urls.py 中使用的 static 辅助函数仅在 DEBUG 打开时才有效。有security concerns如果您在生产中以这种方式提供用户上传的内容。

如果您确实确定您用户的内容是安全的,您当然可以取消此限制。

def static(prefix, view=serve, **kwargs):
    ...
    # No-op if not in debug mode or an non-local prefix
    if not settings.DEBUG or (prefix and '://' in prefix):
        return []
    elif not prefix:
        raise ImproperlyConfigured("Empty static prefix not permitted")
    return [
        url(r'^%s(?P<path>.*)$' % re.escape(prefix.lstrip('/')), view, kwargs=kwargs),
    ]

关于python - django/whitenoise 存储后端导致错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37641233/

相关文章:

python - 错误 1045 (28000) : Access denied

python - 通过 Spark 创建 Parquet Petastorm 数据集失败并出现溢出错误(大于 4GB)

python - 为什么我的 django 模板不输出模板变量对象?

node.js - Telegraf 和 Heroku 未在 webhook [nodejs] 上发送第一个回复

python - 如何让 Pandas 创建新工作表而不是覆盖?

python - 将 Flask 应用程序导入 Elastic Beanstalk 错误 : can't open file 'mod_wsgi' : [Errno 2] No such file or directory

javascript - 为 Django 应用编写 JS 测试

django - 如何覆盖 Django 基本模板

heroku - 使用 Meteor 启用 Gzip 压缩

python - 将 django 应用程序部署到 heroku 缺少 CSS/静态文件