「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をインストールしましたが、何も実行されていないようです...