Gianluca Ghettini
Gianluca Ghettini

Reputation: 11658

Error 500.19 Internal server error on IIS

There are lots of questions about this message error, I tried all the proposed solutions but none of them worked

I have a ASP .NET webapp, I registered the app to IIS and when I visit the page I get this error:

HTTP Error 500.19 internal server error The requested page cannot be accessed because the related configuration data for the page is invalid

Error code is: 0x8007000d

enter image description here

I post my 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=".\ReviewerServices.web.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="true" />
  </system.webServer>
</configuration>

Here what I tried:

Upvotes: 1

Views: 10369

Answers (1)

Lex Li
Lex Li

Reputation: 63264

It is so carefully documented by Microsoft in a step by step way,

https://learn.microsoft.com/en-us/aspnet/core/publishing/iis

You forgot to install ASP.NET Core Module for IIS.

Upvotes: 1

Related Questions