Mmmm… Maybe any of you have any idea of how to sort this.
I believe that the problem in particular is located in the tpl
/stpl
files, in particular at:
<IfModule mod_wsgi.c>
WSGIScriptReloading On
WSGIScriptAlias / %sdocroot%/app/app.wsgi
WSGIDaemonProcess %domain%-django-ssl user=%user% group=%user% processes=1 threads=5 display-name=%{GROUP} python-path=%docroot%/venv/lib/python3.7/site-packages
WSGIProcessGroup %domain%-django-ssl
WSGIApplicationGroup %{GLOBAL}
</IfModule>
And all is caused because of the WSGIDaemonProcess %domain%-django-ssl
line, which is giving an Name duplicates previous WSGI daemon definition
error.
I tried giving different names to the daemon, but I’m still unsuccessful.
Any suggestion?