<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
        </handlers>
        <httpPlatform processPath="C:\inetpub\wwwroot\your_django_project\venv\Scripts\python.exe"
                    arguments="runserver.py"
                    stdoutLogEnabled="true"
                    stdoutLogFile="C:\inetpub\wwwroot\your_django_project\logs\python.log"
                    startupTimeLimit="60">
        </httpPlatform>
    </system.webServer>
</configuration>