django建站的註意點
阿新 • • 發佈:2018-12-24
圖片 true temp set messages ssa tag nginx配置 無效
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 裏配置無效)
django建站的註意點