生产服务器中的Django TemplateDoesNotExist在开发中工作时

时间:2017-03-31 20:00:27

标签: django apache django-templates mod-wsgi django-deployment

我收到以下错误。它只在生产中使用apache + mod_wsgi部署Django应用程序。它在开发服务器(我的电脑)中完美运行:

TemplateDoesNotExist at /
base.html

尸检。正如您所看到的那样,我只能搜索设置中的两个文件夹中的一个:

Django tried loading these templates, in this order:
Using loader django.template.loaders.filesystem.Loader:
Using loader django.template.loaders.app_directories.Loader:
/home/bot_frontend/horses/templates/base.html (File does not exist)
/usr/local/lib/python2.7/dist-packages/django/contrib/admin/templates/base.html (File does not exist)
/usr/local/lib/python2.7/dist-packages/django/contrib/auth/templates/base.html (File does not exist)
/home/virtualenvs/bot_frontend/lib/python2.7/site-packages/django_extensions/templates/base.html (File does not exist)

以下是我的设置。 base.html模板位于"模板"文件夹:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [
            os.path.join(BASE_DIR, "templates"),
            os.path.join(BASE_DIR, "horses/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',
            ],
        },
    },
]

我确认此模板确实存在:

>>> from django.template.loader import get_template
>>> get_template("base.html")
<django.template.backends.django.Template object at 0x7f6af68d38d0>

正如您所看到的,在我的模板目录中只有一个文件夹正在搜索,而在开发服务器中它可以正常工作。任何想法为什么会这样?是否有可能出现某种权限问题。

1 个答案:

答案 0 :(得分:1)

在settings.py中为DIRS添加第二个条目为我解决了这个问题。

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': ['templates'],'
        'DIRS': [BASE_DIR + "/templates", ],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [