HTTP Error 502.5 en .NET core 2.1.3 en Windows Server 2016

Insto .NET core versión 2.1.3 para mi nuevo sistema operativo Windows Server 2016. Lo alojé en IIS 10. Pero tiene el error 502

HTTP Error 502.5 - Process Failure

Common causes of this issue:
The application process failed to start
The application process started but then stopped
The application process started but failed to listen on the configured port

Este es mi fragmento de web.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.webServer>
    <handlers>
      <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
    </handlers>
    <aspNetCore processPath="dotnet" arguments=".\WebApplication1.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
  </system.webServer>
</configuration>

Respuestas a la pregunta(3)

Su respuesta a la pregunta