You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <httpCookies httpOnlyCookies="true" /> <httpRuntime maxRequestLength="51200" /> <!--50MB--> </system.web> <location path="." inheritInChildApplications="false"> <system.webServer> <handlers> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" /> </handlers> <aspNetCore processPath="%LAUNCHER_PATH%" requestTimeout="00:05:00" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess"> <environmentVariables> <environmentVariable name="ASPNETCORE_HTTPS_PORT" value="44394" /> <environmentVariable name="COMPLUS_ForceENC" value="1" /> <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" /> </environmentVariables> </aspNetCore> <security> <requestFiltering> <requestLimits maxAllowedContentLength="51200000"/> <!--50MB--> </requestFiltering> </security> </system.webServer> </location> </configuration> <!--ProjectGuid: 61f94ed8-0dd3-453e-8e33-93c18fb3c429-->
|