27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<system.webServer>
|
|
<security>
|
|
<requestFiltering>
|
|
<requestLimits maxAllowedContentLength="1073741824" maxQueryString="1073741824" />
|
|
</requestFiltering>
|
|
</security>
|
|
<httpProtocol>
|
|
<customHeaders>
|
|
<remove name="X-Powered-By" />
|
|
</customHeaders>
|
|
</httpProtocol>
|
|
<handlers>
|
|
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
|
|
</handlers>
|
|
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess">
|
|
<handlerSettings>
|
|
<handlerSetting name="enableShadowCopy" value="true" />
|
|
<handlerSetting name="shadowCopyDirectory" value="../ShadowCopyDirectories" />
|
|
<!-- Only enable handler logging if you encounter issues-->
|
|
<!--<handlerSetting name="debugFile" value=".\logs\aspnetcore-debug.log" />-->
|
|
<!--<handlerSetting name="debugLevel" value="FILE,TRACE" />-->
|
|
</handlerSettings>
|
|
</aspNetCore>
|
|
</system.webServer>
|
|
</configuration> |