Internal Server Error with Django and uWSGI
问题 I am trying to follow the steps in this guide: http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html Before I even get to the nginx part I am trying to make sure that uWSGI works correctly my folder structure is srv/www/domain/projectdatabank/ the project databank folder contains my manage.py file my wsgi.py file looks like this: import os import sys from django.core.wsgi import get_wsgi_application application = get_wsgi_application() do you need to see my settings.py?