尝试运行Django应用程序时出现WSGIServer错误

mpe*_*pen 8 django fastcgi wsgiserver

首先,这是我的脚本:

#!/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")
Run Code Online (Sandbox Code Playgroud)

正如所描述这里.

这是我尝试从shell运行它时得到的错误:

WSGIServer: missing FastCGI param REQUEST_METHOD required by WSGI!
WSGIServer: missing FastCGI param SERVER_NAME required by WSGI!
WSGIServer: missing FastCGI param SERVER_PORT required by WSGI!
WSGIServer: missing FastCGI param SERVER_PROTOCOL required by WSGI!
Status: 404 NOT FOUND
Content-Type: text/html


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<!-- more html which looks to be the correct output -->
Run Code Online (Sandbox Code Playgroud)

我的问题是,为什么FastCGI不会自动传递这些参数?我究竟做错了什么?从我的Web服务器运行脚本只是给我一个内部服务器错误.


我可以使用而不是我脚本的最后两行

from flup.server.fcgi import WSGIServer
from django.core.handlers.wsgi import WSGIHandler
WSGIServer(WSGIHandler()).run()
Run Code Online (Sandbox Code Playgroud)

但我仍然得到完全相同的错误......

mpe*_*pen 6

解决了它.无论出于何种原因,这个.htaccess文件都能解决这个问题.我发誓我以前尝试过这一切......

AddHandler fcgid-script .fcgi
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^(media/.*)$ - [L]
RewriteRule ^(adminmedia/.*)$ - [L]
RewriteCond %{REQUEST_URI} !(cgi-bin/myproject.fcgi)
RewriteRule ^(.*)$ cgi-bin/myproject.fcgi/$1 [L]
Run Code Online (Sandbox Code Playgroud)