如何在Fedora 17上使用带Python(和Django)的FCGI?

时间:2012-08-10 02:46:58

标签: python apache fedora fastcgi

我无法访问“index.fcgi”;我一直收到500内部服务器错误。 这是我的error_log:

[Thu Aug 09 19:40:17 2012] [warn] [client 127.0.0.1] (104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server
[Thu Aug 09 19:40:17 2012] [error] [client 127.0.0.1] Premature end of script headers: index.fcgi

这是我在.htaccess文件中的内容:

Options +ExecCGI
Options +Indexes
AddHandler fcgid-script .fcgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.fcgi/ [QSA,L]

这是我的index.fcgi:

#!/usr/bin/python2.7
from django.core.servers.fastcgi import runfastcgi
runfastcgi(method="threaded", daemonize="false")

print "Content-type: text/html\n\n"
print
print "<html>"
print "<body>"
print "<b>test</b>"
print "</body>"
print "</html>"

我甚至删除了django import和runfastcgi组件,我仍然无法看到我的页面。

为什么会发生这种情况?我肯定安装了mod_python,mod_wsgi,mod_fcgid,mod_fcgi,但似乎没有任何东西让它运行...

1 个答案:

答案 0 :(得分:2)

有一种方法可以解决这个问题:cd到index.fcgi所在的目录并运行./index.fcgi
- 这会给你一个确切的错误。