21 lines
665 B
XML
21 lines
665 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="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
|
|
|
|
<security>
|
|
<requestFiltering>
|
|
<requestLimits maxAllowedContentLength="200000000" />
|
|
</requestFiltering>
|
|
</security>
|
|
</system.webServer>
|
|
</location>
|
|
</configuration>
|
|
<!--ProjectGuid: 35b6b963-974a-4414-8609-b0668181fa64-->
|
|
|