| 12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <system.webServer>
- <security>
- <requestFiltering>
- <requestLimits maxAllowedContentLength="1073741824" maxQueryString="1073741824" />
- </requestFiltering>
- </security>
- <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="experimentalEnableShadowCopy" value="true" />
- <handlerSetting name="shadowCopyDirectory" value="../ShadowCopyDirectory/" />
- <!-- 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>
|