-1

I have problems with hosting web app on IIS. In next photos you will see my configuration files that I change and errors that I have when try start app on browser.

web.config:

    <configuration>
   <system.webServer>
     <validation validateIntegratedModeConfiguration="false"/>
    <handlers>
      <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
    </handlers>
    <aspNetCore processPath="dotnet" 
                arguments=".\bin\Debug\netcoreapp3.1\TaskTracker.Frontend.dll" 
                stdoutLogEnabled="false" 
                stdoutLogFile=".\logs\stdout" 
                hostingModel="inprocess" />
  </system.webServer>
</configuration>

hosts file

applicationHost

applicationHost part 2

Error when I try to see authentication of app

I was setup permissions on app folder in properties-security of foler. When I try to consume app through browser, error was: server error in browser

  • 1
    Does this answer your question? [IIS Server & ASP.Net Core - 500.19 with error code 0x8007000d](https://stackoverflow.com/questions/37948865/iis-server-asp-net-core-500-19-with-error-code-0x8007000d) – Lex Li Aug 09 '20 at 15:17

1 Answers1

0

There is a problem with your web.config file configuration, I suggest you reinstall IIS and ASP.Net Core module to restore the configuration files.

samwu
  • 3,857
  • 3
  • 11
  • 25