今かなりググって、djangoのドキュメントに従っています..それでもうまくいきませんが、私はかなり近いと思います..これについてはたくさんの情報があることを知っていますが、まだいくつかのガイドを試しました動作しません。他のトピックで提案されているほとんどのものをテストしたと思います..
(シェルから)開発モードで動作しているサーバーにdjangoサイトをデプロイしようとしています。したがって、python manage.py runserver を実行するときは問題ありませんが、django を実行するために apache2 サーバーを取得しようとすると、最初に「要求された URL / このサーバーで見つかりませんでした。」が表示され、今は apache の error.log に記録されます。 :
[client 192.168.1.49] mod_wsgi (pid=5606): Exception occurred processing WSGI script '/home/Webmod/www/djangojquerycontroller/Server/Server/wsgi.py'.
[client 192.168.1.49] Traceback (most recent call last):
[client 192.168.1.49] File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/wsgi.py", line 236, in __call__
[client 192.168.1.49] self.load_middleware()
[client 192.168.1.49] File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py", line 45, in load_middleware
[client 192.168.1.49] for middleware_path in settings.MIDDLEWARE_CLASSES:
[client 192.168.1.49] File "/usr/local/lib/python2.7/dist-packages/django/conf/__init__.py", line 53, in __getattr__
[client 192.168.1.49] self._setup(name)
[client 192.168.1.49] File "/usr/local/lib/python2.7/dist-packages/django/conf/__init__.py", line 48, in _setup
[client 192.168.1.49] self._wrapped = Settings(settings_module)
[client 192.168.1.49] File "/usr/local/lib/python2.7/dist-packages/django/conf/__init__.py", line 134, in __init__
[client 192.168.1.49] raise ImportError("Could not import settings '%s' (Is it on sys.path?): %s" % (self.SETTINGS_MODULE, e))
[client 192.168.1.49] ImportError: Could not import settings 'Server.settings' (Is it on sys.path?): No module named Server.settings
したがって、 https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/に記載されているすべてのものをインストールしました
まず第一に、私のサイトは /home/Webmod/www/djangojquerycontroller/Server にあります。
(サイトの名前は Server..) したがって、ほとんどの作業を行っているアプリ dataManager と共に、テンプレート、静的、およびメディア フォルダーがあります。フォルダー /home/Webmod/www/djangojquerycontroller/Server/Server には、次のものが見つかります。
django.wsgi: (このファイルは手動で作成する必要がありました。うまく機能したかどうかはわかりません..)
import os
import sys
path = '/home/Webmod/www/djangojquerycontroller/'
if path not in sys.path:
sys.path.append(path)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Server.settings")
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
wsgi.py: (このファイルからエラー メッセージを書き込めるので、このファイルは実行中です (!))
import sys, os
print >>sys.stderr, "hej from wsgi.py"
sys.path.append('/home/Wedmod/www/djangojquerycontroller/Server')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Server.settings")
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler( )
settings.py:
import warnings
import exceptions
# PROJECT_ROOT = os.path.realpath(os.path.dirname(__file__))
warnings.filterwarnings("ignore", category=exceptions.RuntimeWarning, module='django.db.backends.sqlite3', lineno=50)
DEBUG = True
TEMPLATE_DEBUG = DEBUG
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '/home/Webmod/www/djangojquerycontroller/Server/Server/db/database', # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
'USER': '',
'PASSWORD': '',
'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
'PORT': '', # Set to empty string for default.
}
}
ALLOWED_HOSTS = []
TIME_ZONE = 'Europe/Stockholm'
LANGUAGE_CODE = 'en-us'
SITE_ID = 1
USE_I18N = True
USE_L10N = True
USE_TZ = True
MEDIA_ROOT = '/home/Webmod/www/djangojquerycontroller/Server/media'
MEDIA_URL = 'media/'
FILE_UPLOAD_PERMISSIONS = 755
STATIC_ROOT = '/home/Webmod/www/djangojquerycontroller/Server/static'
STATIC_URL = '/static/'
STATICFILES_DIRS = (
'/home/Webmod/www/djangojquerycontroller/Server/static/',
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
#'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
ADMIN_MEDIA_PREFIX = '/admin_media/'
# 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',
)
ROOT_URLCONF = 'Server.urls'
# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'Server.wsgi.application'
TEMPLATE_DIRS = (
'/home/Webmod/www/djangojquerycontroller/Server/templates',
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'dataManager',
'django.contrib.admin',
'django.contrib.admindocs',
'django_evolution',
)
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
}
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
}
}
次に、/etc/apache2 で2 つのバージョンのhttps.confを試しました。
Alias /static/ /home/Webmod/www/djangojquerycontroller/Server/static/
<Directory /home/Webmod/www/djangojquerycontroller/Server/static>
Order deny,allow
Allow from all
</Directory>
WSGIScriptAlias / /home/Webmod/www/djangojquerycontroller/Server/Server/django.wsgi
<Directory /usr/local/django/mysite/apache>
Order deny,allow
Allow from all
</Directory>
2 番目のテスト:
WSGIScriptAlias / /home/Webmod/www/djangojquerycontroller/Server/Server/wsgi.py
WSGIPythonPath /home/Webmod/www/djangojquerycontroller:/usr/local/lib/python2.7/dist-packages/django
<Location "/Server">
SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE Server.settings
PythonOption django.root /Server
PythonPath "['/home/Webmod/www/djangojquerycontroller/', '/home/Webmod/www/djangojquerycontroller/Server','/home/Webmod/www/djangojquerycontroller/Server/dataManager', '/home/Webmod/www/djangojquerycontroller/'] + sys.path"
PythonDebug On
</Location>
/etc/apache2/sites-available/django.conf
<VirtualHost *:80>
WSGIScriptAlias / /home/Webmod/www/djangojquerycontroller/Server/Server/wsgi.py
ServerName localhost
Alias /media/ /home/Webmod/www/djangojquerycontroller/Server/static/
Alias /static/ /home/Webmod/www/djangojquerycontroller/Server/static/
<Directory /home/Webmod/www/djangojquerycontroller/Server/>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
問題は、これの何が問題なのですか? なぜApacheはこのことを想定どおりに実行できないのですか..可能であれば、コピーペーストできるいくつかのクールな端末コマンドで本当に壮大になり、魔法のように機能します! =)
これを解決するためのアイデアは本当に素晴らしいでしょう!