I am trying to serve my django project over Apache using mod_wsgi. Apache will start but my project in inaccessible. When Apache launches I see ImportError: No module named site
in the log. There is also a php site being served by Apache and that is accessable. On the RHEL7 server I have python 2.7.5 AND python 3.6.8 installed, Apache 2.4 and the mod_wsgi module. The project is running in a pipenv virtual environment on django 2.2 and using python 3.6.8.
Here is my django.conf file...
<VirtualHost *:8002>
DocumentRoot /app/eam/gaic/new_support_tools/support_tools
ServerName [ServerName]
WSGIScriptAlias / /app/eam/gaic/new_support_tools/support_tools/wsgi.py
<Directory /app/eam/gaic/new_support_tools/support_tools>
Options +ExecCGI
Order allow,deny
Allow from all
</Directory>
</VirtualHost>```