I created an ASP.NET web application MVC Core 2.2 project. Then I ran it in IIS Express. But I received the following error:
HTTP Error 500.24 - Inter
Something is wrong with your setup. "windowsAuthentication": true shouldn't be there. It's set to false by default, unless you are trying to set and use Windows Authentication. Setting up Windows Authentication requires special steps, including having a web.config file with forwardWindowsAuthToken="True" and .UseIISIntegration() in program.cs file. If you are not trying to do that, just set "windowsAuthentication": false.