django建站的注意點
阿新 • • 發佈:2018-12-24
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 裡配置無效)