I am trying to run a django project on apache web server. I followed this tutorial to setup the server with my django project. I am using ubuntu 14.04 and my project is located in a virualenv on my desktop.
My /000-default.conf settings:
Alias /static /home/manish/Desktop/starchi/ekomerz/static
<Directory /home/manish/Desktop/starchi/ekomerz/static>
Require all granted
</Directory>
<Directory /home/manish/Desktop/starchi/ekomerz/ekomerz>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
WSGIDaemonProcess ekomerz python-path=/home/manish/Desktop/starchi/ekomerz:/home/manish/Desktop/starchi/lib/python2.7/site-packages
WSGIProcessGroup ekomerz
WSGIScriptAlias / /home/manish/Desktop/starchi/ekomerz/ekomerz/wsgi.py
But it is giving me a 500 Internal Server Error
.
What am I doing wrong? I can run my project from my virtual environment.
EDIT: