ASP.NET Core 在 IIS 下的两种部署模式

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-16浏览:1

ASP.NET Core 在 IIS 下的两种部署模式

ASP.NET Core 在 IIS 下的两种部署模式

https://www.cnblogs.com/artech/p/inside-asp-net-core-6-32.html


<aspnetcore>配置

不论是采用何种部署模式,相关的配置都定义在部署目录下的web.config配置文件,它提供的针对ASP.NET CORE Core Module的映射使我们能够将ASP.NET CORE应用部署在IIS中。在web.config中,与ASP.NET CORE应用部署相关的配置定义在<aspNetCore>配置节中。

<aspNetCore
    processPath 		= "dotnet"
    arguments 			= ".\App.dll"
    stdoutLogEnabled 		= "false"
    stdoutLogFile 		= ".\logs\stdout"
    hostingModel		= "outofprocess"
    forwardWindowsAuthToken	= "true"
    processesPerApplication	= "10"
    rapidFailsPerMinute	= "5"
    requestTimeout		= "00:02:00"
    shutdownTimeLimit		= "60"
    startupRetryCount		= "3"
    startupTimeLimit		= "60">
    <environmentVariables>
        <environmentVariable name = "ASPNETCORE_ENVIRONMENT" value = "Development"/>
    </environmentVariables>
    <handlerSettings>
        <handlerSetting name = "stackSize" value = "2097152" />
        <handlerSetting name = "debugFile" value = ".\logs\aspnetcore-debug.log" />
        <handlerSetting name = "debugLevel" value = "FILE,TRACE" />
    </handlerSettings></aspNetCore>


image.webp

ASP.NET Core 在 IIS 下的两种部署模式

ASP.NET Core 在 IIS 下的两种部署模式https://www.cnblogs.com/artech/p/inside-asp-net-core-6-32.html <aspnetcore>配置不论是采用...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息