1. 程式人生 > >django建站的注意點

django建站的注意點

1.如果在centos裡新建立的工程,需要對templates在settings裡面配置路徑

settings.py

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', ], 'libraries': { 'my_tags
': 'templatetags.my_tags', } }, }, ]

 

 

static靜態檔案 需在nginx配置裡新增路徑(只在settings.py 裡配置無效)