Re: Newbee help on deploying Django App to Apache2

2021-05-30 Thread Moose Smith
Thanks Guy Very helpful thanks for the information. I'm working the issue right now. On Sunday, May 30, 2021 at 10:30:18 AM UTC-4 Antonis Christofides wrote: > Apache and nginx are called "web servers". Windows and FreeBSD are called > "operating systems". What is the term for Gunicorn, uWSGI

Re: Newbee help on deploying Django App to Apache2

2021-05-30 Thread Antonis Christofides
Apache and nginx are called "web servers". Windows and FreeBSD are called "operating systems". What is the term for Gunicorn, uWSGI and mod_wsgi? I believe there's no good term, which is one reason for the confusion. Gunicorn, uWSGI and mod_wsgi are specialized web servers that run Python

Re: Newbee help on deploying Django App to Apache2

2021-05-30 Thread Chetan Ganji
I think, you are using the default python version installed on the machine, not the one of the virtualenv. You will have to configure the mod_wsgi to use the python of the virtuelanv. This might help you. https://modwsgi.readthedocs.io/en/develop/user-guides/virtual-environments.html# Regards,

Newbee help on deploying Django App to Apache2

2021-05-30 Thread Moose Smith
App written in ubuntu virtual environment python 3.8.5. Works well on Visual Studio Code development server. Am trying to make it run on Apache2 development server. I have been able to install WSGI module on Apache Server and ran a test Hello World in Python and it worked. However, the django