AspNetCore.Docs/aspnet/hosting/http-platformhandler/sample/web.config

22 lines
739 B
Plaintext

<configuration>
<system.webServer>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<add name="httpplatformhandler"
path="*" verb="*"
modules="httpPlatformHandler"
resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="..\approot\web.cmd"
arguments=""
stdoutLogEnabled="true"
stdoutLogFile="..\logs\stdout"
startupTimeLimit="3600">
<environmentVariables>
<environmentVariable name="DEMO" value="demo_value" />
</environmentVariables>
</httpPlatform>
</system.webServer>
</configuration>