I want to deploy my Django project to EC2 server. I installed mod_wsgi.
And made configuration like in the tutorial of django.
I am getting the following:
The problem is that mod_wsgi is not installed properly.
mod_wsgi
Solution (using Apache 2):
install Apache:
$ sudo apt-get install apache2
install libapache2-mod-wsgi:
libapache2-mod-wsgi
$ sudo apt-get install libapache2-mod-wsgi
And this should work fine.