1👍
✅
modify your apache settings now. If setting up wsgi file was your first step, then next step should be modifying your apachee config to point towards that file.
The link you posted points towards this page: https://docs.djangoproject.com/en/1.4/howto/deployment/wsgi/modwsgi/
that has all the necessary information. You can just choose between putting all that into http.conf file or creating site file for it under sites-available & sites-enabled folders in /etc/apache.
After that – restart your apache server by /etc/init.d/apache2 or service apache2 restart – whichever works.
Then since its your first time, youll see some errors in your /var/log/apache2/error.log. Fix them… and try again 🙂
Good luck.
Source:stackexchange.com