NET8 windows下 发布web.config配置

 

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.webServer>
    <handlers>
      <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
    </handlers>
    <aspNetCore 
      processPath="dotnet" 
      arguments=".\OPAC.dll" 
      stdoutLogEnabled="true" 
      stdoutLogFile=".\logs\stdout" 
      hostingModel="inprocess">
      <environmentVariables>
        <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Production" />
      </environmentVariables>
    </aspNetCore>
  </system.webServer>
</configuration>

 

posted on 2025-11-06 12:48  RookieBoy666  阅读(0)  评论(0)    收藏  举报