Ejecute la aplicación web go en IIS

¿Hay alguna manera de ejecutar la aplicación web Go en IIS?
Encontré una configuración para azul pero no funciona en mi máquina de desarrollo
esta es una configuración web para azure:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
        </handlers>
        <httpPlatform processPath="d:\home\site\wwwroot\go\bin\go.exe" 
                      arguments="run d:\home\site\wwwroot\server.go" 
                      startupTimeLimit="60">
            <environmentVariables>
              <environmentVariable name="GOROOT" value="d:\home\site\wwwroot\go" />
            </environmentVariables>
        </httpPlatform>
    </system.webServer>
</configuration>

Respuestas a la pregunta(2)

Su respuesta a la pregunta