8

首先,这是我的脚本:

#!/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")

正如这里所描述的。

这是我尝试从 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 -->

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


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

from flup.server.fcgi import WSGIServer
from django.core.handlers.wsgi import WSGIHandler
WSGIServer(WSGIHandler()).run()

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

4

2 回答 2

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]
于 2009-04-29T06:22:16.000 回答
2

该脚本期望这些参数作为环境变量传递。由于它们不存在于您的 shell 环境中,并且脚本未在 apache fastcgi 环境(提供它们)中运行,因此它会抱怨。

您可以访问 apache 错误日志吗?他们说什么?

您的主机是否支持 mod_wsgi?如果是这样,您可以使用 Django 的 wsgi 处理程序:

import sys
import os

base = os.path.dirname(os.path.abspath(__file__)) + '/..'
sys.path.append(base)

os.environ['DJANGO_SETTINGS_MODULE'] = 'yourproject.settings'

import django.core.handlers.wsgi

application = django.core.handlers.wsgi.WSGIHandler()

更多说明可以在modwsgi wikiDjango 文档中找到。

于 2009-04-29T02:06:27.923 回答