I am trying to serve my webpages using Apache and was wondering the difference between wsgi.py and django.wsgi.
There is documentation on both but I'm not sure which one I should implement. I am running on Django 1.4, Apache 2.2.2, Ubuntu 12.04 LTS
https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/modwsgi/ https://docs.djangoproject.com/en/1.2/howto/deployment/modwsgi/
Other questions:
Currently I'm implementing django.wsgi and have commands in that file. If I have to create wsgi.py, what should I put into the file? I can't find documentation on that.
Do I need to alter my virtualhost file? I am only running 1 website off my server.