这可能是一个非常愚蠢的问题;我正在尝试使用Gunicorn部署Django应用程序。但是,我刚刚创建了wsgi.py,如下所示(wsgi.py在我的根项目文件夹中):
import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings")
# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here.
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
# Apply WSGI middleware here.
# from helloworld.wsgi import HelloWorldApplication
# application = HelloWorldApplication(application)
现在我跑了:
python manage.py run_gunicorn
Gunicorn会自动接收这个wsgi.py吗?这是如何运作的? (不确定wsgi在做什么)。或者我需要指定一些东西吗?
答案 0 :(得分:2)
如果您在Django设置模块的INSTALLED_APPS中列出了gunicorn,则命令为:
python manage.py run_gunicorn
不是你给的命令。
答案 1 :(得分:1)
我有Gunicorn主持我的django网站,这是config details希望这是有帮助的