FastCGI进程经常失败,使用IIS在Windows 2012 Server上部署Django应用程序时越来越

时间:2018-09-27 09:19:57

标签: django fastcgi iis-8 django-deployment windows2012rc

enter image description here我正在尝试使用IIS在Windows 2012服务器上部署Django应用程序。 我的web.config文件:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>

            <add name="Django Handler" path="*" verb="*" modules="FastCgiModule" scriptProcessor="C:\Users\chinmay_arima\env_resolution\Scripts\python.exe|C:\Users\chinmay_arima\env_resolution\Lib\site-packages\wfastcgi.py" resourceType="Unspecified" requireAccess="Script" />

    </handlers>
    </system.webServer>
</configuration>

获取“ HTTP错误500-内部服务器错误”。 请找到附件以查看错误。 使用Django版本:2和       IIS版本:8.5 我关注以下链接: http://blog.mattwoodward.com/2016/07/running-django-application-on-windows.html 请帮帮我,我需要使用IIS服务器在Windows上部署Django应用程序。

1 个答案:

答案 0 :(得分:0)

有点晚了,但是我认为此错误是由web.config文件的错误放置引起的。另外,在appSettings

下似乎缺少一些参数

您的配置文件应类似于https://github.com/Johnnyboycurtis/webproject/blob/master/web-config-template

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
    <handlers>
    <add name="Python FastCGI" 
    path="*" 
    verb="*" 
    modules="FastCgiModule" 
    scriptProcessor="<to be filled in>" 
    resourceType="Unspecified" 
    requireAccess="Script" />
    </handlers>
</system.webServer>

<appSettings>
    <add key="PYTHONPATH" value="C:\inetpub\wwwroot\webproject" />
    <add key="WSGI_HANDLER" value="webproject.wsgi.application" />
    <add key="DJANGO_SETTINGS_MODULE" value="webproject.settings" />
</appSettings>
</configuration>

这是与该代码项目Deploy Django on Windows using Microsoft IIS 一起学习的教程