静态文件在生产环境中不起作用,甚至对于管理页面也是如此。
我没有添加任何静态文件。
我有我的管理页面风格的问题。
我已经按照下面的教程创建了django应用程序。
https://tutorial.djangogirls.org/en/
下面是我的settings.py
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = '##############################'
# SECURITY WARNING: don't run with debug turned on in production! DEBUG = True
ALLOWED_HOSTS = ['127.0.0.1', '.pythonanywhere.com']
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'blog', ]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware', ]
ROOT_URLCONF = 'new_p.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'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',
],
},
}, ]
WSGI_APPLICATION = 'new_p.wsgi.application'
# Database
# https://docs.djangoproject.com/en/2.0/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
} }
# Password validation
# https://docs.djangoproject.com/en/2.0/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
}, ]
# Internationalization
# https://docs.djangoproject.com/en/2.0/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.0/howto/static-files/
STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'static')
我已经在生产环境中运行了collectstatic。
(master)$ python3 manage.py collectstatic
You have requested to collect static files at the destination location as specified in your settings:
/home/ag/ag.pythonanywhere.com/new_p/static
This will overwrite existing files! Are you sure you want to do this?
Type 'yes' to continue, or 'no' to cancel: yes
0 static files copied to '/home/agusm/agusm.pythonanywhere.com/new_p/static', 119 unmodified.
6条答案
按热度按时间wwwo4jvm1#
我认为你的设置和运行
collectstatic
的方式是好的。如果你在pythonanywhere上托管,我假设你是基于你的
ALLOWED_HOSTS
,你需要遵循this guide:设置静态文件Map
最后,设置一个静态文件Map,让我们的Web服务器为您提供静态文件。
转到PythonAnywhere Jmeter 板上的Web选项卡转到Static Files部分在url部分输入与STATIC_URL相同的URL(通常为/static/)在path部分输入从STATIC_ROOT开始的路径(完整路径,包括/home/username/etc)
然后点击Reload并通过检索已知的静态文件来测试静态文件Map。
例如,如果您在/home/myusername/myproject/static/css/base. css中有文件,请访问http://www.your-domain.com/static/css/base.css
这基本上是你通过手动设置你的web服务器(nginx/apache,如pfitzer's answer)所做的,但我假设它是通过pythonanywhere的web界面来设置目录别名的相同过程。
b4wnujal2#
如果你使用nginx你需要在你的配置
对于这样的apache来说
7y4bm7vi3#
将静态文件投入生产环境的基本方法是运行collectstatic命令
您需要配置您的Web服务器,以提供URLSTATIC_URL下STATIC_ROOT中的文件
引用此link
oug3syen4#
主要的问题是在urls.py的项目,你已经创建了我也想通了,解决方案,为我工作是:如果DEBUG = False,则django的默认设置不包括静态和媒体路径
urls.py :
settings.py:
Assets是我的静态文件所在的文件夹名称,在您的情况下,它可以是静态的
zaq34kh65#
这是你需要的
当运行collectstatic时,默认的STATICFILES_FINDERS值django.contrib.staticfiles.finders.FileSystemFinder将从STATICFILES_DIRS中的任何路径收集静态文件。
另一个默认的STATICFILES_FINDERS值django.contrib.staticfiles.finders.AppDirectoriesFinder将在INSTALLED_APPS中的任何应用的/static/文件夹中查找。
找到的所有静态文件都将放在指定的STATIC_ROOT目录中。
这将把所有文件从静态文件夹复制到STATIC_ROOT目录。
您也可以使用
查看collectstatic将查找哪些目录。
ccrfmcuu6#
将这些文本粘贴到settings.py文件中
然后粘贴
{% load static %}
在html文件中你想使用静态文件或媒体然后对图像使用
<img src="{% static 'media/images/mandeep.jpeg' %}" alt="My image">
对于CSS链接,使用
<link rel="stylesheet" href="{% static '/css/style.css' %}">
有什么问题尽管问