Django Admin 在生产 Heroku 中引发 500 错误

Posted

技术标签:

【中文标题】Django Admin 在生产 Heroku 中引发 500 错误【英文标题】:Django Admin raise 500 error in production Heroku 【发布时间】:2022-01-19 16:03:37 【问题描述】:

我知道这个问题已被多次提出,但未能解决问题。 这是我的问题:我的 Django-React 应用程序部署在 Heroku 上并且运行良好(非常简单的应用程序)。我想知道访问我的应用程序的 /admin 部分,但我收到 500 内部服务器错误。 该错误出现在本地和 Heroku 中。 DEBUG 是假的,不幸的是我无法让日志工作,无论是在 Heroku 还是在本地:(

这是我的 settings.py:

from pathlib import Path
import django_heroku
import os

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'xxxxxxxxxxxxxxxxxxxxxx'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False

ALLOWED_HOSTS = ['vmbf.herokuapp.com', '127.0.0.1', 'localhost']


ADMINS = [('username', 'emailaddress')]
MANAGERS = ADMINSEMAIL_HOST = 'host'
SEND_BROKEN_LINK_EMAILS=True
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'

EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'emailaddress'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
SERVER_EMAIL = EMAIL_HOST_USER


# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',  
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'rest_framework',
    'corsheaders',
    'students',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'whitenoise.middleware.WhiteNoiseMiddleware',
    'corsheaders.middleware.CorsMiddleware',
    '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 = 'django_react_proj.urls'

TEMPLATES = [
    
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'students-fe/build')],
        '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 = 'django_react_proj.wsgi.application'


# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases

DATABASES = 
    'default': 
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    



# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    
        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
    ,
    
        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
    ,
]


# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
django_heroku.settings(locals())

CORS_ALLOW_ALL_ORIGINS = True
CORS_ALLOWED_ORIGINS = (
    'https://vmbf.herokuapp.com',
)

CSRF_TRUSTED_ORIGINS = [
    'vmbf.herokuapp.com',
]

STATIC_ROOT = os.path.join(BASE_DIR,'students-fe', 'build', 'static')
STATIC_URL = '/static/'

STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'

这是我的文件夹的样子:

Folder structure

请随意问我更多代码,我是 Django / React 新手,因此我不确定我应该在这里分享什么。

【问题讨论】:

你是否运行过 makemigrations 和 migrate 命令 是的,没有要迁移的东西 Operations to perform: Apply all migrations: admin, auth, contenttypes, sessions, students Running migrations: No migrations to apply. 你是否尝试通过设置DEBUG=True运行 这能回答你的问题吗? Prevent Django SQLite db from being overwritten while pushing to Heroku 这能回答你的问题吗? Is it possible to deploy Django with Sqlite? 【参考方案1】:

所以我发现了我的问题。

它与 PostgreSQL 无关,但感谢 @Chris 指出这一点,这对我来说是更好的开发方法。

问题与我在 settings.py 中管理静态文件的方式有关

我不明白 STATIC_ROOT 是如何工作的,我理解的是相反的方式。经过反思,这是我所做的:

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

我的文件将从此 staticfiles 目录中提供。

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'students-fe','build','static'),
]

但它必须包含我在 students-fe/build/static 文件夹中的 react 应用程序。

最重要的是,在部署到 Heroku 时,需要添加 buildpack,我这样做了,但顺序不正确。

首先我需要添加 python(对于 Django):

heroku buildpacks:set heroku/python

然后说在此之前它需要安装nodejs(用于React):

heroku buildpacks:add --index 1 heroku/nodejs

像这样,Heroku 将首先在 python manage.py collectstatic 之前执行 npm run build,这是将静态文件移动到 staticfiles 文件夹所需的。

希望它可以帮助其他人。 感谢大家的回答。

【讨论】:

以上是关于Django Admin 在生产 Heroku 中引发 500 错误的主要内容,如果未能解决你的问题,请参考以下文章

Heroku Django 在生产过程中如何获取设置文件?多种设置

如何将文件直接从 Django admin 上传到 Amazon S3?缓解 Heroku 应用程序错误(超时)

使用 heroku 在生产中部署媒体和静态的 django 设置和 url 应该是啥样的?

传输数据 | Django Heroku

使用 Windows 机器将 Django 部署到 Heroku(生产服务器而不是开发服务器)

django override admin 在本地工作而不是在生产中