I want to configure my python project to make use of apache,
All the configuration settings I have done to have my project to run apache as its server did not work but it was producing
ModuleNotFound error, but when I checked using pip list I saw that the package was installed. However when I run python manage.py runserver ipaddress:8000
it worked perfectly without any error. This show that there is configuration which was not working.
However all tutorials I have studied used apache2 directory as the location where their configuration takes place.
But when I checked apache2 directory I discovered that it was pointing to apache directory and if I tried to enter into apache2 directory it would redirect me to apache directory so all my work is taking place in apache directory and not apache2 directory.
How can I get my project to make use of apache server and probably access apache2 as it is done in all the tutorials.