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.

29 lines
1010 B

4 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <system.web>
  4. <compilation targetFramework="4.0" debug="true" />
  5. <customErrors mode="Off" />
  6. <globalization fileEncoding="utf-8" />
  7. <httpRuntime targetFramework="4.0" maxRequestLength="2147483647" executionTimeout="3600" enableVersionHeader="false" requestPathInvalidCharacters="" />
  8. <sessionState mode="Off" />
  9. <pages controlRenderingCompatibilityVersion="4.0" />
  10. </system.web>
  11. <system.webServer>
  12. <handlers>
  13. <add name="HttpHandler" path="*" verb="*" type="Apewer.Web.ApiProgram" />
  14. </handlers>
  15. <modules runAllManagedModulesForAllRequests="true">
  16. <add name="HttpModule" type="Apewer.Web.ApiProgram" />
  17. </modules>
  18. <security>
  19. <requestFiltering allowDoubleEscaping="true">
  20. <fileExtensions>
  21. <clear />
  22. </fileExtensions>
  23. <hiddenSegments>
  24. <clear />
  25. </hiddenSegments>
  26. <requestLimits maxAllowedContentLength="2147483647" />
  27. </requestFiltering>
  28. </security>
  29. </system.webServer>
  30. </configuration>