 I am trying to deploy Django application on Windows 2012 server using IIS.
my web.config file :
I am trying to deploy Django application on Windows 2012 server using IIS.
my web.config file :
<?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>
Getting "HTTP Error 500 - Internal server error".
Please find the attachment to see the error.
- Django version: 2
- IIS version: 8.5
I am following the below to link: http://blog.mattwoodward.com/2016/07/running-django-application-on-windows.html
 
     
    