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.

26 lines
1.1 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <system.web>
  4. <httpCookies httpOnlyCookies="true" />
  5. <httpRuntime maxRequestLength="51200" /> <!--50MB-->
  6. </system.web>
  7. <location path="." inheritInChildApplications="false">
  8. <system.webServer>
  9. <handlers>
  10. <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
  11. </handlers>
  12. <aspNetCore processPath="%LAUNCHER_PATH%" requestTimeout="00:05:00" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess">
  13. <environmentVariables>
  14. <environmentVariable name="ASPNETCORE_HTTPS_PORT" value="44394" />
  15. <environmentVariable name="COMPLUS_ForceENC" value="1" />
  16. <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />
  17. </environmentVariables>
  18. </aspNetCore>
  19. <security>
  20. <requestFiltering>
  21. <requestLimits maxAllowedContentLength="51200000"/> <!--50MB-->
  22. </requestFiltering>
  23. </security>
  24. </system.webServer>
  25. </location>
  26. </configuration>
  27. <!--ProjectGuid: 61f94ed8-0dd3-453e-8e33-93c18fb3c429-->