以前,我已经成功使用apache部署了各种Django站点,但是我在安装了Plesk发行版的服务器上。因此,在进行设置时,我已经部署了一个非常基本的应用程序:
Basic contents of the Django Application
已被涂黑的权限都包含 相同 用户名。
但是,此域的Apache error_logs
显示以下错误:
2018-09-30 13:55:06 [wsgi:error] No WSGI daemon process called 'daemonuplordvexxos' has been configured: /var/www/vhosts/winduplordvexxos.com/api.winduplordvexxos.com/apiuplordvexxos/wsgi.py
我的其他apache指令如下(在其中设置了https):
谷歌搜索生命线No WSGI daemon process called 'daemonuplordvexxos' has been configured
带来了零运气。
我的wsgi.py
文件是Django 2.1.1安装的标准文件:
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'apiuplordvexxos.settings')
application = get_wsgi_application()
我不确定这是否可以帮助任何人诊断我的问题: