WSGIServer errors when trying to run Django app
问题 Firstly, here's my script: #!/usr/bin/python import sys, os sys.path.append('/home/username/python') sys.path.append("/home/username/python/flup") sys.path.append("/home/username/python/django") # more path stuff os.environ['DJANGO_SETTINGS_MODULE'] = "project.settings" from django.core.servers.fastcgi import runfastcgi runfastcgi(method="threaded", daemonize="false") As was described here. And here's the error I get when trying to run it from shell: WSGIServer: missing FastCGI param REQUEST