python Django模板在部署到EC2后不存在于/debug_toolbar/base. html

jvidinwx  于 2023-03-11  发布在  Python
关注(0)|答案(3)|浏览(115)

我正在尝试在EC2示例上部署Django应用程序。我已经正确地将我的EC2示例放在Allowed_Host中。但是它一直给我一个Disallowed_Host错误。我一直在尝试修复这个错误,但是现在我得到了。
Django模板不存在于/debug_toolbar/base. html错误

***有人能告诉我哪里做错了吗?***以下是我的截图和代码。顺便说一句,它在我的开发www.example.com中运行得非常好127.0.0.1

下面还提供了Traceback,以防万一

我已在下面附上我的settings.py文件

import os

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
TEMPLATE_DIR = os.path.join(BASE_DIR, 'templates')

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "1111111111111111111111"

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

ALLOWED_HOSTS = ["ec2-11-111-111-11.compute-1.amazonaws.com", "127.0.0.1", "Siteevent.com", "www.Siteevent.com"]

# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.gis',
    'bootstrap3',
    'accounts',
    'groups',
    'posts',
    'proof',
    'feeds',
    'questions',
    'tasting',
    'verification',
    'cart',
    'stripe',
    'order',
    'report',
    'django_cleanup',
    'bootstrap_datepicker_plus',
    'social_django',
    'storages',
    'captcha',

]

AUTHENTICATION_BACKENDS = [

    'social_core.backends.google.GoogleOAuth2',
    'social_core.backends.facebook.FacebookOAuth2',
    'django.contrib.auth.backends.ModelBackend',
    'accounts.authentication.EmailAuthBackend',

]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    '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',
    'debug_toolbar.middleware.DebugToolbarMiddleware',
    'social_django.middleware.SocialAuthExceptionMiddleware',
]

ROOT_URLCONF = 'Site.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [TEMPLATE_DIR, os.path.join(BASE_DIR, 'order', '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',
                'social_django.context_processors.backends',
                'social_django.context_processors.login_redirect',
                'cart.context_processors.counter',
            ],
        },
    },
]

WSGI_APPLICATION = 'Site.wsgi.application'

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

DATABASES = {
    'default': {
        'ENGINE': 'django.contrib.gis.db.backends.postgis',
        'NAME': 'Site_event',
        'USER': '11111111111111111111111',
        'PASSWORD': '11111111111111111111111111',
        'HOST': 'Site-event1111111111111111111111111rds.amazonaws.com',
        'PORT': '5432',
    }
}

# Password validation
# https://docs.djangoproject.com/en/1.11/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/1.11/topics/i18n/

LANGUAGE_CODE = 'en-us'

# TIME_ZONE = 'UTC'
TIME_ZONE = "America/New_York"
USE_TZ = True

USE_I18N = True

USE_L10N = True

AWS_DEFAULT_ACL = None
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'static'),
]
DEFAULT_FILE_STORAGE = 'aws_storage_classes.MediaStorage'
AWS_STORAGE_BUCKET_NAME = 'Site-media-1111111111111'
STATICFILES_STORAGE = 'aws_storage_classes.StaticStorage'
AWS_S3_OBJECT_PARAMETERS = {
    'CacheControl': 'max-age=86400',
}

AWS_S3_DOMAIN = "%s.s3.amazonaws.com" % AWS_STORAGE_BUCKET_NAME

STATIC_URL = 'https://%s/static/' % AWS_S3_DOMAIN
MEDIA_URL = 'https://%s/media/' % AWS_S3_DOMAIN

ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/'

LOGIN_REDIRECT_URL = 'loggedin'
LOGOUT_REDIRECT_URL = 'accounts:login'

SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = '1111111111111111111111111111111111111111111'
SOCIAL_AUTH_GOOGLE_OAUTH_SECRET = '111111111111111111111111111111111111111111'

INTERNAL_IPS = ('127.0.0.1', )

BOOTSTRAP3 = {
    'include_jquery': True,
}

DATE_INPUT_FORMATS = ['%b %d %Y']

TIME_INPUT_FORMATS = ['%I:%M %p']

####Stripe Settings###

STRIPE_PUBLISHABLE_KEY = '11111111111111111111111111111111111'
STRIPE_SECRET_KEY = '11111111111111111111111111111111111'

RECAPTCHA_PUBLIC_KEY = "11111111111111111111111111111111111111111111"
RECAPTCHA_PRIVATE_KEY = "111111111111111111111111111111"

# try:
#     from Site.local_settings import *
# except ImportError as e:
#     pass
#

将django_toolbar添加到INSTALED_APPS会出现以下错误

我甚至试着删除django_tooldbar和middleare,它们只是在不同的地方给了我同样的错误

x3naxklr

x3naxklr1#

发生错误的原因是您在中间件中包含了debug_toolbar,但在INSTALLED_APPS中没有包含。因此,您需要从MIDDLEWARE中删除'debug_toolbar.middleware.DebugToolbarMiddleware',

debug_toolbar添加到INSTALLED_APPS。参考django_toolbar

kuuvgm7e

kuuvgm7e2#

我也有同样的问题。
但对我来说,那是由INTERNAL_IPS引起的。
当它设置为:INTERNAL_IPS = ['127.0.0.1', ]并尝试访问http://localhost:8000/,但无法正常工作,IP地址也无法正常工作。
但如果它转向:INTERNAL_IPS = ['localhost', ],它可以很好地与http://127.0.0.1:8000/和http://localhost:8000/配合使用。

brccelvz

brccelvz3#

从已安装的应用中删除Django Debud工具栏后,您还必须从MiddleWares部分中删除它。

相关问题