-1

In our Windows server 2012R2 we have a problem with one of our websites.

While searching on Stack Overflow I saw some answer about URL rewrite module, but that's just fine & updated.

What else could be the problem and how can fix it ?

This is the web.config file.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath=".\ILH.Web.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
    </system.webServer>
  </location>
</configuration>

And this is the error when we try to access the website on windows local server browser: Print screen error

Acidburns
  • 109
  • 3
  • 11
  • Is the web.config file valid? Has it changed recently? How about permissions to access the web.config file? – DavidG May 20 '22 at 13:37
  • @DavidG nothing, not a single change in the past 2 years, after a server restart 3 days ago, we`ve got this error. – Acidburns May 20 '22 at 13:41
  • Set stdoutLogEnabled="true" in the above config file and look for the log file in the specified location to find more info about what's really going on. Also check in the Event Viewer for any related events that might have been recorded. – Nick Papadiochos May 20 '22 at 14:55
  • @NickPapadiochos https://prnt.sc/AJjz3mftUBAB – Acidburns May 20 '22 at 15:04
  • It's not quite clear why this is happening. I assume some update got installed and now WebsitePanel cannot load the website. Enlist all of the updates that happened in the last days and try to spot whichever caused the mess - possibly a .net core version update ? – Nick Papadiochos May 20 '22 at 15:38
  • Does this answer your question? [asp.net core web api published in IIS after moved to different IIS server pc gives error 500.19 (0x8007000d)](https://stackoverflow.com/questions/49034308/asp-net-core-web-api-published-in-iis-after-moved-to-different-iis-server-pc-giv) – Lex Li May 21 '22 at 00:48
  • [Does this answer useful to you](https://stackoverflow.com/a/54987397/7687666) – Jason May 23 '22 at 02:45

0 Answers0