我正在尝试使用 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 应用程序。