gpt4 book ai didi

django - 在共享的FastCGI主机上托管Django

转载 作者:行者123 更新时间:2023-12-02 04:14:52 26 4
gpt4 key购买 nike

我正在尝试使用FastCGI在iPage.com上设置django共享托管,但我一直遇到问题。 CGI脚本以文本形式而不是执行方式出现在浏览器中。以下是.htaccess和fcgi脚本

.htacess

AddHandler fastcgi-script .fcgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ cgi-bin/mysite.fcgi/$1 [QSA,L]

下面是fcgi脚本
#!/usr/bin/python
import sys, os

# Add a custom Python path.
sys.path.insert(0, "/home/users/web/b2374/ipg.navtejportfoliocom/django")

# Switch to the directory of your project. (Optional.)
os.chdir("/home/user/myproject")

# Set the DJANGO_SETTINGS_MODULE environment variable.
os.environ['DJANGO_SETTINGS_MODULE'] = "tej.settings"

from django.core.servers.fastcgi import runfastcgi
runfastcgi(method="threaded", daemonize="false")

我在做什么不对?

最佳答案

您是否启用了文件执行权限?在您的FTP客户端中,为用户/组/其他启用“执行”位。否则,apache会认为它只需要提供文件即可。

如果您具有Linux Shell访问权限,也可以执行chmod +x mysite.fcgi

关于django - 在共享的FastCGI主机上托管Django,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3340996/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com