我正在尝试使用Elastic Beanstalks在AWS上部署我的Django项目。我已经为WSGIPath尝试了多个值更改。 但每次,我都得到同样的错误:
从ubuntu终端运行'eb create'时:
错误日志(来自Eb日志):
-------------------------------------
/var/log/httpd/error_log
-------------------------------------
mod_wsgi (pid=3005): Target WSGI script '/opt/python/current/app/myapp/wsgi.py' cannot be loaded as Python module.
mod_wsgi (pid=3005): Exception occurred processing WSGI script '/opt/python/current/app/myapp/wsgi.py'.
Traceback (most recent call last):
File "/opt/python/current/app/myapp/wsgi.py", line 24, in <module>
application = get_wsgi_application()
File "/opt/python/run/venv/lib/python2.7/site-packages/django/core/wsgi.py", line 13, in get_wsgi_application
django.setup()
File "/opt/python/run/venv/lib/python2.7/site-packages/django/__init__.py", line 17, in setup
configure_logging(settings.LOGGING_CONFIG, settings.LOGGING)
File "/opt/python/run/venv/lib/python2.7/site-packages/django/conf/__init__.py", line 55, in __getattr__
self._setup(name)
File "/opt/python/run/venv/lib/python2.7/site-packages/django/conf/__init__.py", line 43, in _setup
有人可以解释一下如何获取这条路径以及如何纠正这条路径?
我的项目结构:
.
├── .ebextensions
│ ├── myapp.config
├── .elasticbeanstalk
│ ├── config.yml
├── db.sqlite3
├── manage.py
├── media
├── abc
│ ├── admin.py
│ ├── apps.py
│ ├── constants.py
│ ├── __init__.py
│ │ └── __init__.py
│ ├── models.py
│ ├── test1_form.py
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── requirements.txt
├── static
├── templates
└── myapp
├── constants.py
├── test1_form.py
├── __init__.py
├── registration_form.py
├── settings.py
├── urls.py
├── views.py
└── wsgi.py
myapp.config文件:
option_settings:
"aws:elasticbeanstalk:container:python":
WSGIPath: "myapp/wsgi.py"
config.yml文件
branch-defaults:
master:
environment: abc-dev
group_suffix: null
global:
application_name: abc
default_ec2_keyname: abc_eb_key
default_platform: Python 2.7
default_region: us-east-1
profile: eb-cli
sc: git
settings.py文件:
WSGI_APPLICATION = 'myapp.wsgi.application'
myapp / wsgi.py文件:
import os, sys, inspect
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myapp.settings")
application = get_wsgi_application()
答案 0 :(得分:0)
更新了myapp.config文件哪个有效:
option_settings:
"aws:elasticbeanstalk:container:python":
WSGIPath: "myapp/wsgi.py"
"aws:elasticbeanstalk:container:python:staticfiles":
"/static/": "static/"