在IIS中承载.net core 3.0时出错(0x8007000D)

wljmcqd8  于 2022-11-12  发布在  .NET
关注(0)|答案(1)|浏览(177)

我创建了一个网站,它有以下的web.config文件。它运行在.net核心3.0自包含发布版本。它运行在以前的Windows 7,现在我的公司更新到Windows 10,现在它停止工作。它是相同的IIS配置,但无法读取web.config文件。我尝试了其他解决方案提到,但我会喜欢有你的支持。它给出错误声明IIS可以't加载webconfig文件。

<?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=".\ASU_Statistics.exe" arguments="" stdoutLogEnabled="false" hostingModel="InProcess" stdoutLogFile=".\logs\stdout">
        <environmentVariables>
          <environmentVariable name="ASPNETCODE_ENVIRONMENT" value="Production" />
          <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />
          <environmentVariable name="ASPNETCORE_HTTPS_PORT" value="44370" />
          <environmentVariable name="COMPLUS_ForceENC" value="1" />
        </environmentVariables>
      </aspNetCore>
    </system.webServer>
  </location>
</configuration>
<!--ProjectGuid: ee398fc0-8f34-4edf-9353-67342cbe9ee3-->

bqujaahr

bqujaahr1#

检查服务器上是否安装了AspNetCoreModuleV2模块。
如果未安装模块,请从此link下载AspNetCoreModuleV2并安装

相关问题