HTTP Error 500.19 - Internal Server Error.Getting error 500.19 when i host .net core web application in iis

0

I've hosted a .net core web application in IIS. When i run the application i'm getting Error "HTTP Error 500.19 - Internal Server Error"

Detailed Error Information:
Module     IIS Web Core
Notification       Unknown
Handler    Not yet determined
Error Code     0x8007000d
Config Error       
Config File    \\?\C:\inetpub\wwwroot\HMACServer\web.config
Requested URL      http://localhost:6781/
Physical Path      
Logon Method       Not yet determined
Logon User     Not yet determined

I've tried by changing the permissions still facing the same issue.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath="dotnet" arguments=".\HmacCoreServer.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
    </system.webServer>
  </location>
</configuration>
.net
iis
.net-core
hosting
iis-10
asked on Stack Overflow Dec 19, 2019 by Akhil Bajjuri

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0