Django apache管理静态文件

Posted

技术标签:

【中文标题】Django apache管理静态文件【英文标题】:Django apache managing static files 【发布时间】:2015-08-16 02:37:56 【问题描述】:

自从我开始使用 Django 使用 Python 编程已经一个月了。最近我不得不在 Apache 服务器上部署我的第一个应用程序。一切都很顺利,除了静态文件的管理方式。

确实,django admin css 不工作,我自制的 css 文件也是如此。

我的设置示例,包括与静态文件管理相关的内容 设置.py:

编辑 settings.py (10/06/2015):

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

DEBUG = True

ALLOWED_HOSTS = ['foo.moo']

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'formulaire',
)

MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
    'django.middleware.security.SecurityMiddleware',
)

ROOT_URLCONF = 'foo.urls'

STATIC_ROOT = os.path.join(BASE_DIR,'static')

STATICFILES_DIRS = (
    os.path.join(BASE_DIR, 'project_static'),
)

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

WSGI_APPLICATION = 'foo.wsgi.application'


DATABASES = 
    'default': 
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'test_front_end',
        'USER': '******',
        'PASSWORD': '*****',
        'HOST': 'censored',
        'PORT': '5432',
    


LANGUAGE_CODE = 'fr-fr'

TIME_ZONE = 'Europe/Paris'

USE_I18N = True

USE_L10N = True

USE_TZ = True


STATIC_URL = '/static/'

当前 apache httpd conf(2015 年 10 月 6 日编辑):

 <VirtualHost *:80>
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www
        ServerName www.foo.moo


        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

          WSGIDaemonProcess daemonschift python-path=/var/www/schift/
WSGIProcessGroup daemonschift
Alias /static/admin/ "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/static/"
Alias /static/ /var/www/schift/static/
<Directory /var/www/schift/>
    <Files wsgi.py>
        Order allow,deny
        Allow from all
    </Files>
</Directory>
<Directory /var/www/schift/static/>
   Order allow,deny
   Allow from all
</Directory>
<Directory "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/static/">
   Order allow,deny
   Options Indexes
   Allow from all
   IndexOptions FancyIndexing

ErrorLog $APACHE_LOG_DIR/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog $APACHE_LOG_DIR/access.log combined

顺便说一句,我有那个经常产生的错误日志:

[Tue Jun 02 11:59:28 2015] [alert] (2)No such file or directory: mod_wsgi (pid=19643): Unable to change working directory to '/usr/local/apache2/htdocs'.

不知道有没有我的问题的链接...

我之前已经阅读了很多答案,并尝试使用它们,但是到目前为止,settings.py / apache config 的更改还不够。我也跟着 django 教程没有结果。现在我有点迷茫,因为我找到的所有答案都是不同的,并且从来没有使用相同的方法来使用 apache 设置静态文件。

【问题讨论】:

【参考方案1】:

您的STATIC_URL 错误。鉴于您的 Apache 配置,它应该是 /static/(无论如何它应该是一个 URL,而不是文件系统路径)。

而且我认为您的 Apache 日志中的错误与您的问题无关。

【讨论】:

谢谢,现在我有另一个问题,但更好:现在服务器识别文件。在错误日志中我有:[Tue Jun 02 14:02:25 2015] [error] [client (adress)] access to /static/style_head.css failed, reason: require directives present and no Authoritative handler., referer :moo.foo/schift/welcome 总比没有日志好,我现在尝试解决其他问题。 @Kaël 好吧,这似乎很明显 - 只需重新阅读您的 apache conf,/var/www/schift/staticDirectory 指令;) 我也不认为你会需要这一行: Alias /static/admin/ "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/static “只要您在部署时执行“collectstatic”,Apache 配置中的一个别名就可以解决问题。管理静态文件将自动放在 /static/admin 下。 谢谢,我找到了解决第一个问题的方法,方法是用更适合的方式更改“要求全部授予”。现在我有另一个问题:[Tue Jun 02 15:42:45 2015] [error] [client address] 客户端被服务器配置拒绝:/usr/local/lib/python2.7/dist-packages/django/contrib/admin /staticcss,referer:moo.foo/schift/admin [Tue Jun 02 15:42:51 2015] [crit] [client address] 配置错误:无法执行身份验证。 AuthType 未设置!:/static/style_head.css,referer:moo.foo/schift/welcome 我不明白为什么错误告诉“contrib/admin/staticcss”,我在任何地方都找不到这样的错误。对于第二个错误,我在某处读到它来自我的 htaccess... 或来自我的 httpd conf。【参考方案2】:

对于工作目录警告,您使用的是哪个 mod_wsgi 版本?看起来您可能使用的是旧版本。

对于您的静态文件访问问题更改为使用:

Alias /static/admin/ "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/static/"

如果要在 URL 路径上添加斜杠,则需要在目标路径上添加斜杠。

【讨论】:

完成,尽管有人建议我删除该行。仍然没有加载静态文件。 如果你已经开始使用 collectstatic,你仍然需要一个 Alias 行来引用 collectstatic 放置它们的位置。当你这样做时,重要的是 URL 和目标目录,要么都没有斜杠,要么都有斜杠。如果您没有正确执行此操作,这就是为什么您会看到路径中缺少斜杠的“contrib/admin/staticcss”请求。您如何编辑问题,最后在 Apache 中输入您的配置。 我将 mod_wsgi 3.3 与 python 2.7 和 django 1.8 一起使用。使用 httpd conf 编辑的问题 由于您启用了索引,当您转到 URL 中的“/static/admin/”时会看到什么?什么文件和目录,或者还有那个错误? 当我转到“foo/schift/welcome/static/admin/”时,我看到了我的静态存储库的索引,其中包含 js、css 和 img 存储库。我不得不手动设置一个 URL。我通过设置 url(r'^static/(?P.*)$', 'django.views.static.serve', 'document_root': settings.STATIC_ROOT, 'show_indexes':True)在我的 url 视图中,当我在某处阅读时,它可能是问题所在,尽管仍然没有加载 css 文件。

以上是关于Django apache管理静态文件的主要内容,如果未能解决你的问题,请参考以下文章

django 1.6 使用别名和 apache 提供静态管理文件

Apache 不提供 django 管理静态文件

我的 Django 静态文件在哪里?

[django]django 在apache2上部署静态文件如何加载

为啥建议使用不同的服务来托管 django 的静态文件(如 nginx 或 apache)?

Django:如何在生产中的apache服务器上部署静态文件