Gunicorn error: unrecognized arguments wsgi:application

Gunicorn error: unrecognized arguments wsgi:application

我正在尝试使用 centos7 平台在 Nginx 中 运行 Django,而且我是它的新手。一段时间后,我在 gunicorn 服务的帮助下在 Nginx 中配置了 Django,但突然 gunicorn 服务因无法识别的参数错误(WSGI)而停止。 enter image description here

和我的 gunicorn 服务文件:

[Unit]
Description=gunicorn daemon
After=network.target

[Service]
User=user
Group=nginx
WorkingDirectory=/home/websitehg/websites/qatarfactory/qf_project
ExecStart=/home/websitehg/websites/qatarfactory/qf_env/bin/gunicorn --workers 3 --reload true --bind unix:/home/websitehg/websites/qatarfactory/qf_project/qf_project.sock qf_project.wsgi:app

[Install]
WantedBy=multi-user.target

不知道怎么回事

我添加了线程,问题为我解决了

--threads=3