前提・実現したいこと
Djangoでブログアプリを作ってHEROKUを使って公開しようとしています。
ローカル環境でサーバーを立ち上げると管理サイトへアクセス出来るのですが、デプロイ後だとServer Error (500)が表示されてしまいアクセスできず、解決方法を探しています。
管理サイト以外のページはデプロイ後もアクセス可能です。
発生している問題・エラーメッセージ
HEROKUへデプロイ後、Djangoの管理サイトへアクセスするとServer Error (500)が表示されてしまいます。
heroku logs --tail
2020-12-31T07:55:05.474134+00:00 heroku[router]: at=info method=GET path="/admin/" host=*.herokuapp.com request_id=6d*** fwd="133.*.*.*" dyno=web.1 connect=1ms service=59ms status=500 bytes=410 protocol=https
該当のソースコード
settings.py
from pathlib import Path import os import dj_database_url from socket import gethostname # 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.1/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! # SECURITY WARNING: don't run with debug turned on in production! DEBUG = False # ALLOWED_HOSTS = ['*'] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'blogpost.apps.BlogpostConfig', ] 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 = 'blogproject.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'templates')], '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 = 'blogproject.wsgi.application' # Database # https://docs.djangoproject.com/en/3.1/ref/settings/#databases # Password validation # https://docs.djangoproject.com/en/3.1/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.1/topics/i18n/ LANGUAGE_CODE = 'ja' TIME_ZONE = 'Asia/Tokyo' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/3.1/howto/static-files/ STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static/')] STATIC_ROOT = os.path.join(BASE_DIR, '..', 'collected_static') # Parse database configuration from $DATABASE_URL # Honor the 'X-Forwarded-Proto' header for request.is_secure() SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') # Allow all host headers # Static asset configuration # 本番環境と開発環境の切り替え try: from .local_settings import * except ImportError: pass if not DEBUG: SECRET_KEY = os.environ['SECRET_KEY'] LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'handlers': { 'console': { 'class': 'logging.StreamHandler', }, }, 'loggers': { 'django': { 'handlers': ['console'], 'level': os.getenv('DJANGO_LOG_LEVEL', 'DEBUG'), }, }, } # DB設定 PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__)) db_from_env = dj_database_url.config() DATABASES = { 'default': dj_database_url.config() } ALLOWED_HOSTS = [".herokuapp.com"] import django_heroku django_heroku.settings(locals()) # Simplified static file serving. # https://warehouse.python.org/project/whitenoise/ # STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
試したこと
django_heroku.settings(locals())をコメントアウトするとHEROKUへデプロイ後もDjangoの管理サイトへアクセスできることがわかりました。
ただし、cssが効いていないのか白背景でスタイルが崩れています。
管理サイト以外は表示されており、以下のコマンドを実施した際にエラーは返ってきません。
$ git add -A $ git commit -m ' ' $ git push heroku main $ heroku run python manage.py migrate $ heroku run python manage.py collectstatic $ heroku run python manage.py createsuperuser
補足情報(FW/ツールのバージョンなど)
OS: windows10, macOS Big Sur(両方試しました)
ブラウザ: Google chrome
requirements.txt
asgiref==3.3.0 dj-database-url==0.5.0 dj-static==0.0.6 Django==3.1.3 django-heroku==0.3.1 django-toolbelt==0.0.1 gunicorn==20.0.4 Pillow==8.0.1 psycopg2==2.8.6 pytz==2020.4 sqlparse==0.4.1 static3==0.7.0 whitenoise==5.2.0
あなたの回答
tips
プレビュー