uwsgi + nginx 跑 django 項目報模板文件找不到

       django 1.8 項目跑調試沒有任何問題,可是在uwsgi + nginx 環境中老是時不時的報TemplateDoesNotExist錯誤,須要在settings 中加入以下內容便可:nginx

   

import osdjango

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

   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',
            ],
        },debug

相關文章
相關標籤/搜索