2👍
✅
You are missing a WSGIProcessGroup directive to tell mod_wsgi to run things in the daemon process you configured. Use:
WSGIProcessGroup myapp
WSGIApplicationGroup %{GLOBAL}
The latter isn’t strictly needed, but can avoid issues if using third party Python C extensions that do not work in sub interpreters (secondary application groups).
Source:stackexchange.com