非调试模式下的Django Whitenoise 500服务器错误

时间:2018-12-19 22:22:18

标签: django django-staticfiles django-settings collectstatic whitenoise

我在本地计算机上使用django。为了提供静态文件,我将WhiteNoise与其一起使用。 DEBUG = True正确地提供了所有静态文件。但是,当我更改DEBUG = False并设置ALLOWED_HOSTS = ['*']时,出现500个服务器错误。但是,管理站点加载没有任何错误。另外,当我注释掉STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'时,我没有得到500错误。

我遵循http://whitenoise.evans.io/en/stable/django.html中提供的文档来连接白噪声。我尚未对wsgi.py文件进行任何更改。我运行了python manage.py collecststatic,它没有任何错误。

settings.py如下:

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

SECRET_KEY = 'fdft&b(xb*!qq3ghjkjhg6789ih8ik!w10$0uscxcpqpmz'
DEBUG = False

ALLOWED_HOSTS = ['*']

INSTALLED_APPS = [
'whitenoise.runserver_nostatic', #Disable Djangos static file server during DEVELOPMENT
'gep_app.apps.GepAppConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]

MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'whitenoise.middleware.WhiteNoiseMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'gep_project.urls'

TEMPLATES = [
{
    'BACKEND': 'django.template.backends.django.DjangoTemplates',
    'DIRS': [],
    'APP_DIRS': True,
    'OPTIONS': {
        'context_processors': [
            'django.template.context_processors.debug',
            'django.template.context_processors.request',
            'django.contrib.auth.context_processors.auth',
            'django.contrib.messages.context_processors.messages',
        ],
    },
},
]

WSGI_APPLICATION = 'gep_project.wsgi.application'


DATABASES = {
'default': {
    'ENGINE': 'django.db.backends.postgresql_psycopg2',
    'NAME': '*************',
    'USER': '*****',
    'PASSWORD': '********',
    'HOST': '*****',
    'PORT': '5432',
}
}

 # User model
 AUTH_USER_MODEL = 'gep_app.User'

 # Login URL
 LOGIN_URL = 'login'

 # Login redirect
 LOGIN_REDIRECT_URL = 'home'

 # Logout redirect
 LOGOUT_REDIRECT_URL = 'login'

 #Authentication backends
 AUTHENTICATION_BACKENDS = (
    'django.contrib.auth.backends.ModelBackend',
)

LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'

2 个答案:

答案 0 :(得分:1)

我遇到了类似的错误,日志显示ValueError:Missing staticfiles manifest entry for ...

在settings.py中更改STATICFILES_STORAGE 来自: STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
转至:
STATICFILES_STORAGE = 'whitenoise.storage.CompressedStaticFilesStorage'
this section of whitenoise docs中所述,已为我修复。

另外,您可能想更改SECRET_KEY,因为它已公开共享。

答案 1 :(得分:0)

为快速解决方案而改变:

STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'

到:

STATICFILES_STORAGE = 'whitenoise.storage.CompressedStaticFilesStorage'

但是!它将生成没有唯一块键的静态文件,以便在客户端浏览器中正确更新(例如 style.343a1fa2da70.css),并且在不刷新站点缓存后客户端将看不到更改。 WhiteNoise 仅在 Django 的存储周围添加了一个瘦包装器以添加压缩支持,并且由于压缩代码非常简单,因此通常不会引起问题。所以你需要

  1. 返回STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
  2. 手动清除 staticfiles 文件夹
  3. 通过 py manage.py collectstatic --noinput 刷新静态资源
  4. 享受吧!