web增加web.config,用于iis发布
大石头 authored at 2020-03-22 21:25:12
682.00 B
Stardust
<?xml version="1.0" encoding="utf-8"?>
<configuration>

  <!-- To customize the asp.net core module uncomment and edit the following section. 
  For more info see https://go.microsoft.com/fwlink/?linkid=838655 -->
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath=".\Stardust.Web.exe"
                  stdoutLogEnabled="false"
                  stdoutLogFile=".\log\stdout"
                  hostingModel="inprocess" />
    </system.webServer>
  </location>

</configuration>