私はDjango(1.4)に比較的慣れておらず、静的ファイル、メディアファイル、および管理ファイルの背後にある哲学を理解するのに苦労しています。プロジェクトの構造はチュートリアルごとに異なり、Webfaction(アプリケーションをホストする場所)でも同じです。Webfactionに展開する際に、最小限の労力と編集で整理するための最適な方法を知りたいのですが、静的メディア、管理ファイルのポイントは何ですか?前もって感謝します
3 に答える
本質的には、開発中のdjangoによって静的ファイルを提供する必要があります。本番環境に移行する準備ができたら、サーバーにこれを実行させます(高速に実行するように構築されています:-))
基本的な設定は次のとおりです。サーバーにログインしたら、collectstaticコマンドを実行して、サーバーが指すstatic-rootフォルダー内のすべての静的ファイルを取得します(書き換えルールを参照)。
./manage.py collectstatic
settings.py
from os import path
import socket
PROJECT_ROOT = path.dirname(path.abspath(__file__)) #gets directory settings is in
# Dynamic content is saved to here
MEDIA_ROOT = path.join(PROJECT_ROOT,'media')
# if ".webfaction.com" in socket.gethostname():
# MEDIA_URL = 'http://(dev.)yourdomain.com/media/'
# else:
MEDIA_URL = '/media/'
# Static content is saved to here --
STATIC_ROOT = path.join(PROJECT_ROOT,'static-root') # this folder is used to collect static files in production. not used in development
STATIC_URL = "/static/"
STATICFILES_DIRS = (
('', path.join(PROJECT_ROOT,'static')), #store site-specific media here.
)
# 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',
)
settings_deployment.py
from settings import *
DEBUG = False
TEMPLATE_DEBUG = DEBUG
MEDIA_URL = "http://yourdomain.com/media/"
urls.py
...other url patterns...
if settings.DEBUG:
urlpatterns += staticfiles_urlpatterns() #this serves static files and media files.
#in case media is not served correctly
urlpatterns += patterns('',
url(r'^media/(?P<path>.*)$', 'django.views.static.serve', {
'document_root': settings.MEDIA_ROOT,
}),
)
django.conf(lighttpd、これはapacheまたはnginxの可能性があります)が、webfactionにはこれを簡単に設定するためのアプリサービスがあると思います
$HTTP["host"] =~ "(^|\.)yourdomain\.com$" {
fastcgi.server = (
"/django.fcgi" => (
"main" => (
"socket" => env.HOME + "/project/project.sock",
"check-local" => "disable",
)
),
)
alias.url = (
"/media" => env.HOME + "/project/media",
"/static" => env.HOME + "/project/static-root",
)
url.rewrite-once = (
"^(/media.*)$" => "$1",
"^(/static.*)$" => "$1",
"^/favicon\.ico$" => "/static/img/favicon.png",
"^(/.*)$" => "/django.fcgi$1",
)
}
静的ファイルは、カスタムJSスクリプト、アイコン、アプレットなど、サーバーが変更なしで提供できるアプリケーションに必要なファイルです。静的ファイルを使用する最良の方法は、アプリの各フォルダーの「静的」フォルダーに静的ファイルを配置することです。このように、テストサーバーはそこでそれらを見つけます。本番サーバーにデプロイする場合は、python manage.py collectstatic
settings.pyで定義されたルート静的フォルダーにすべてをコピーするために実行する必要があります。
メディアファイルは、アバターの写真など、アプリケーションのユーザーによってアップロードされたファイルです。
管理ファイルはDjango管理者が使用する静的ファイルであり、djangoテストサーバーはそれらを見つけるだけですが、本番環境では、管理者が実際に機能するためにこのフォルダーにコピーまたはリンクする必要があります。
それがあなたが物事をよりよく見るのに役立つことを願っています...
私の設定は次のとおりです。
1.settings.py
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/var/www/example.com/media/"
MEDIA_ROOT='/media/'
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://example.com/media/", "http://media.example.com/"
MEDIA_URL = '/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: "/var/www/example.com/static/"
STATIC_ROOT = '/static/'
# URL prefix for static files.
# Example: "http://example.com/static/", "http://static.example.com/"
STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
'/'.join(__file__.split(os.sep)[0:-2]+['static']),
# 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',
)
2.urls.py
from django.conf import settings
if settings.DEBUG:
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
urlpatterns += staticfiles_urlpatterns()
そして私のサイトディレクトリは次のようになります:
root
│ manage.py
│
├─media
├─my_django_py3
│ settings.py
│ urls.py
│ views.py
│ wsgi.py
│ __init__.py
│
├─static
│ 9gq05.jpg
│ ajax.js
│ favicon.gif
│
├─templates
└─utils