Apache 不提供 django 管理静态文件
Posted
技术标签:
【中文标题】Apache 不提供 django 管理静态文件【英文标题】:Apache not serving django admin static files 【发布时间】:2012-03-19 00:37:38 【问题描述】:感谢 Stack Overflow 社区的各位帮助我解决各种 Django 和 Apache(带有 mod_wsgi)错误。到目前为止,我已经问了大约 5 个相关问题,现在我越来越接近将我的内容发布到生产网站上!
所以我知道有很多类似的问题,我读过bunchofquestionsaboutservingservingstatic987654327@fileson@987654330。 /p>
我读到了STATIC_URL
、STATIC_ROOT
、(即将过时的)ADMIN_MEDIA_PREFIX
,并在 Apache 配置中设置了 Alias /media/ ...
。我试图一个一个地测试每个解决方案,但我无法得到任何工作。
这是我的管理网站现在的样子
我还有一个奇怪的情况,即 any 子域在我的服务器上工作。例如,我试图设置我的服务器,以便http://www.satoshi.example.com/ 允许我的正常(非 Django)内容,而http://django.satoshi.example.com/ 允许我的 Django 内容被提供。但目前任何子域,无论是 satoshi.example.com 还是 blahblahasdas.satoshi.example.com 都在为我的 Django 文件提供服务(我知道是因为我可以访问两个站点上的 /admin
页面,尽管它们将在不同的会话中)。
无论如何,这是我在服务器上运行的文件 CentOS
(不确定哪个版本)、Apache 2.2.15
、Python 2.6.6
、django 1.3.1
和 mod_wsgi 3.2
。
我将在下面发布我认为最相关的文件和配置:
每次重启时 Apache 都会抛出这些错误
[Wed Feb 29 01:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [notice] SIGHUP received. Attempting to restart
[Wed Feb 29 00:45:36 2012] [error] Exception KeyError: KeyError(140249420548064,) in <module 'threading' from '/usr/lib64/python2.6/threading.pyc'> ignored
[Wed Feb 29 01:45:36 2012] [notice] Digest: generating secret for digest authentication ...
[Wed Feb 29 01:45:36 2012] [notice] Digest: done
[Wed Feb 29 01:45:36 2012] [warn] mod_wsgi: Compiled for Python/2.6.2.
[Wed Feb 29 01:45:36 2012] [warn] mod_wsgi: Runtime using Python/2.6.6.
[Wed Feb 29 01:45:36 2012] [notice] Apache/2.2.15 (Unix) mod_auth_pgsql/2.0.3 php/5.3.3 mod_ssl/2.2.15 OpenSSL/1.0.0-fips mod_wsgi/3.2 Python/2.6.6 mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations
这里是/var/www/html/mysite/apache/apache_django_wsgi.conf
,它通过NameVirtualHost *:80
选项加载到我的httpd.conf
中
<VirtualHost *:80>
ServerName django.satoshi.example.com
ErrorLog "/var/log/httpd/django_error_log"
WSGIDaemonProcess django
WSGIProcessGroup django
Alias /media/ "/usr/lib/python2.6/site-packages/django/contrib/admin/media"
<Directory "/usr/lib/python2.6/site-packages/django/contrib/admin/media">
Order allow,deny
Options Indexes
Allow from all
IndexOptions FancyIndexing
</Directory>
<Directory "/var/www/html/mysite">
Order allow,deny
Options Indexes
Allow from all
IndexOptions FancyIndexing
</Directory>
WSGIScriptAlias / "/var/www/html/mysite/apache/django.wsgi"
<Directory "/var/www/html/mysite/apache">
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
这里是/var/www/html/mysite/apache/django.wsgi
import os
import sys
paths = [
'/var/www/html/mysite',
'/var/www/html',
'/usr/lib/python2.6/site-packages/',
]
for path in paths:
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
最后这里是/var/www/html/mysite/settings.py
的一部分
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = ''
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
MEDIA_URL = ''
# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
PROJECT_ROOT = os.path.normpath(os.path.dirname(__file__))
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static')
# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'
# URL prefix for admin static files -- CSS, javascript and images.
# Make sure to use a trailing slash.
# Examples: "http://foo.com/static/admin/", "/static/admin/".
ADMIN_MEDIA_PREFIX = '/static/admin/'
# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)
# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
如果你们需要任何其他文件,请告诉我。提前致谢!
【问题讨论】:
很好的问题。你已经完成了你的功课并提供了大量的信息来处理。坚持下去。 好问题,我也迷路了,将 ADMIN_MEDIA_PREFIX 添加到我的设置文件中就可以了。 【参考方案1】:我认为你应该改变:
Alias /media/ "/usr/lib/python2.6/site-packages/django/contrib/admin/media"
到:
Alias /static/admin/ "/usr/lib/python2.6/site-packages/django/contrib/admin/media"
因为你有:
ADMIN_MEDIA_PREFIX = '/static/admin/'
【讨论】:
这只适用于 Django 1.4,它还不是正式版本(尽管它很快就会下降)。在 Django 1.3 中,您需要ADMIN_MEDIA_PREFIX
。没有它就行不通。
感谢您的提醒,我认为他只需要更改他的别名即可匹配 ADMIN_MEDIA_PREFIX。
太棒了!这很完美。哇,这是一个我忽略的简单解决方案......稍后我将不得不做标准的事情并让 lighthttpd 之类的东西处理静态文件。但这将是另一天的另一个问题:P。谢谢@jpic。你以前也帮过我:-)。
'Alias /static/admin/ "/usr/lib/python2.6/site-packages/django/contrib/admin/media"'不应该有尾随'/'吗?跨度>
在带有 Ubuntu 12.10 的 Django 1.5 上,我不得不使用:“Alias /static/admin/”/usr/local/lib/python2.7/dist-packages/django/contrib/admin/static/管理员/"【参考方案2】:
那是因为你还没有设置你的 STATIC 文件...
添加到设置:
STATIC_URL = '/static/'
STATIC_ROOT = '/var/www/static/'
然后运行“python manage.py collectstatic”
这会将所有文件放在 STATIC_ROOT 下 STATIC_URL 将提供服务...您不应该将 Apache 指向您的 Python lib 文件!
如果您还想要自己的应用特定静态文件,请设置“STATICFILES_DIRS”。
【讨论】:
这应该是公认的答案 - collectstatic 将必要的文件移动到您的静态目录并从那里提供它们。【参考方案3】:我找到了解决方案,我查看了 /var/log/httpd/ 中的 access_log 文件
127.0.0.1 - - [28/Dec/2013:14:49:20 -0500] "GET /static/admin/css/login.css HTTP/1.1" 200 836 "http://127.0.0.1/admin/" "Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.24) Gecko/20111109 CentOS/3.6.24-3.el6.centos Firefox/3.6.24"
所以我在 /etc/httpd/conf/httpd.conf 文件中添加了以下标签,
Alias /static /usr/lib/python2.6/site-packages/django/contrib/admin/static
在<VirtualHost 127.0.0.1:80>
标签内
然后我使用
重新启动服务service httpd restart
它有效!!!
【讨论】:
【参考方案4】:以下内容对我有用。 (Django 1.11 和 Python 3.6)
Alias /static/admin /usr/local/lib/python3.6/site-packages/django/contrib/admin/static/admin
<Directory "/usr/local/lib/python3.6/site-packages/django/contrib/admin/static/admin">
Require all granted
Order allow,deny
Allow from all
# AllowOverride All
</Directory>
Alias /static /var/www/app/static
希望对你有帮助。
【讨论】:
以上是关于Apache 不提供 django 管理静态文件的主要内容,如果未能解决你的问题,请参考以下文章
django 1.6 使用别名和 apache 提供静态管理文件
Linux centos7 VMware Apache访问日志不记录静态文件访问日志切割静态元素过期时间