locked
ASPNETCORE on Windows Server 2016 core. RRS feed

  • Question

  • User1680435139 posted

    Hi everyone.

      How do I install aspnetcore support on Windows Server 2016 CORE? I have the following web.config from an application:

    --

    <configuration>
    	<system.web>
    		<authentication mode="Windows" />
    		<customErrors mode="Off" />
    	</system.web>
    	<system.webServer>
    		<handlers>
    			<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
    		</handlers>
    		<aspNetCore processPath="dotnet" arguments=".\SGPWeb.dll" stdoutLogEnabled="true" stdoutLogFile=".\logs\stdout" />
    		<httpErrors errorMode="Detailed" />
    	</system.webServer>
    </configuration>

      That returns error 500.

    Thanks.

    Friday, May 29, 2020 7:38 PM

Answers