According to my error log, my Target WSGI Script cannot be loaded as a Python module, but at the end of my log, I also get an ImportError: No module named foodshop.setti
You haven't done anything to put your app - and its settings file - on your Python path.
If you're not using a virtualenv (though you should be), the simplest thing to do would be to do in your wsgi file:
import os, sys
sys.path.append('/home/ubuntu/gather/src')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "foodshop.settings")