Stack Overflowコミュニティの皆さん、さまざまなDjango=およびApache(with mod_wsgi)エラーで私を助けてくれたことに感謝します。本番サイトでコンテンツを公開することに近づきました!
だから私はこれについて多くの同様の質問があることを知っており、私は bunchofquestionsaboutサービング静的メディアファイルonDjango .
STATIC_URL
、STATIC_ROOT
、(廃止予定)ADMIN_MEDIA_PREFIX
、およびApache構成のAlias /media/ ...
の設定について読みました。各ソリューションを1つずつテストしてみましたが、何も機能しませんでした。
現在、私の管理サイトは次のようになっています
また、anyサブドメインがサーバー上で機能するという奇妙なケースもあります。たとえば、 http://www.satoshi.example.com/ が通常の(非Django)コンテンツを許可するようにサーバーをセットアップしようとしましたが、 http:/ /Django.satoshi.example.com/ は、my 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
は、オプションhttpd.conf
でNameVirtualHost *:80
にロードされます
<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',
)
他のファイルが必要な場合はお知らせください。前もって感謝します!
変更する必要があると思います:
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/'
STATICファイルをセットアップしていないためです...
設定に追加:
STATIC_URL = '/static/'
STATIC_ROOT = '/var/www/static/'
次に、「python manage.py collectstatic」を実行します
これにより、STATIC_URLが提供するSTATIC_ROOTの下にすべてのファイルが配置されます... ApacheをPython libファイルに指定しないでください!!
独自のアプリ固有の静的ファイルも必要な場合は、「STATICFILES_DIRS」を設定します。
私は解決策を得ました、/ 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
そしてそれWorks !!!
次は私のためのトリックをしました。 (Django 1.11 with 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
それが役に立てば幸い。