7

在此处输入图像描述我正在尝试使用 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 应用程序。

4

1 回答 1

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>

以下是使用 Microsoft IIS 在 Windows 上部署 Django 的 代码项目的教程

于 2020-05-22T21:20:47.067 回答