configurationGunicorn:没有指定应用程序模块

我试图用NGINX和gunicorn部署一个django项目。 我一直得到502坏门户。 过去几天我一直在不停地工作,我似乎无法得到这个部署。 我在数字海洋上已经经历了3个教程,但显然它们是不正确的。

我一直得到502坏的网关,或者如果我尝试使用manage.py runserver,我得到了400个不好的请求。

我认为我的问题是与gunicorn。 当我inputgunicorn -config时,它说

usage: gunicorn [OPTIONS] [APP_MODULE] gunicorn: error: No application module specified. 

我可以find的每一个文件都说只是inputgunicorn wsgi:应用程序,但是当我这样做时,它说“工人无法启动”。 如何设置应用程序模块?

假设你有nginx代理端口8001,你想这样做:

gunicorn -b 127.0.0.1:8001 your_project_name.wsgi:application

你需要运行你的项目文件夹(manage.py文件所在的位置)