私は多くの関連する投稿を調べましたが、何も役に立たないようです。
関連情報:
Djangoバージョン-1.4
Apacheバージョン-2.2
Pythonバージョン-2.7
OS-Xubuntu 12.04
DB-Mysql
Apacheにdjangoアプリと静的ファイルの両方を提供させようとしています。この問題は、CSSスタイルまたは画像のいずれも表示できない管理サイトで明らかになります。私の管理サイトは現在次のようになっています。
(まあ、私は画像を含めたでしょうが、スタックオーバーフローは私を許可しませんでした。このトピックに投稿した他のすべての人の管理ページのように見えると言えば十分です。Apacheがdjango管理静的ファイルを提供していないを参照してください )
ログインページや一部の動的コンテンツなどのアプリケーションは問題なく機能しますが、静的コンテンツを提供しようとすると、403エラーが発生します。さらに、管理ページのレンダリングされたhtmlを見て、スタイルシートへのリンクをクリックして手動でスタイルシートに移動しようとすると、
http://localhost/static/admin/css/base.css
403エラーが発生します。ターミナルでそこに移動し、Apacheのwww-dataユーザーがすべてのファイルに明示的にアクセスできるようにフォルダーのアクセス許可を変更できます。
これが私のhttpd.confの関連部分です:
#AliasMatch ^/([^/]*\.css) /usr/local/wsgi/static/styles/$1
Alias /media/ "/usr/local/wsgi/media/"
Alias /static/ "/usr/local/wsgi/static/"
<Directory "/usr/local/wsgi/static">
Order deny,allow
Allow from all
</Directory>
<Directory "/usr/local/wsgi/media">
Order deny,allow
Allow from all
</Directory>
WSGIScriptAlias / "/home/noah/Documents/Web/Basic/apache/django.wsgi"
<Directory "/usr/local/wsgi/scripts">
Order allow,deny
Allow from all
</Directory>
友人のアドバイスで、私も上記を自分のサイトにコピーしました-利用可能なデフォルト:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
TypesConfig /etc/mime.types
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /home/noah/Documents/Web/Basic/apache/ >
Options -Indexes FollowSymLinks
AllowOverride AuthConfig FileInfo
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
SetEnv DJANGO_SETTINGS_MODULE Basic.settings
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>
#AliasMatch ^/([^/]*\.css) /usr/local/wsgi/static/styles/$1
Alias /media "/usr/local/wsgi/media/"
Alias /static "/usr/local/wsgi/static/"
<Directory "/usr/local/wsgi/static">
Order deny,allow
Allow from all
</Directory>
<Directory "/usr/local/wsgi/media">
Order deny,allow
Allow from all
</Directory>
WSGIScriptAlias / "/home/noah/Documents/Web/Basic/apache/django.wsgi"
<Directory "/usr/local/wsgi/scripts">
Order allow,deny
Allow from all
</Directory>
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
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
これが私のdjango.wsgiです
import os
import sys
path = '/home/noah/Documents/Web/Basic'
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'Basic.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
そして最後に、これが私のsettings.pyです:
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = '/usr/local/wsgi/media/'
# 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 = 'http://localhost/media/'
# 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/"
STATIC_ROOT = '/usr/local/wsgi/static/'
# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = 'http://localhost/static/'
# 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',
)
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'bmc&epl=#u)r3elkvj#@90*cji*z^cg8dnh$7j9kh@g9wzw(ih'
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
# 'django.template.loaders.eggs.Loader',
)
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
# Uncomment the next line for simple clickjacking protection:
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'Basic.urls'
# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'Basic.wsgi.application'
私のDjangoプロジェクト「Basic」は、/ var / www /にシンボリックリンクされている〜/ Documents /Web/にあります。
どんな助けでも大歓迎です、そしてあなたがもっとファイル/情報を必要とするならば私に知らせてください。