21 lines
808 B
XML
21 lines
808 B
XML
<?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="dotnet" arguments=".\ServiceHost.dll" stdoutLogEnabled="true" stdoutLogFile=".\logs\stdout" hostingModel="InProcess">
|
|
<environmentVariables>
|
|
<environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />
|
|
</environmentVariables>
|
|
</aspNetCore>
|
|
<security>
|
|
<requestFiltering>
|
|
<requestLimits maxAllowedContentLength="200000000" />
|
|
</requestFiltering>
|
|
</security>
|
|
</system.webServer>
|
|
</location>
|
|
</configuration>
|
|
<!--ProjectGuid: 35b6b963-974a-4414-8609-b0668181fa64--> |