web.config 889 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <location path="." inheritInChildApplications="false">
  4. <system.webServer>
  5. <handlers>
  6. <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
  7. </handlers>
  8. <security>
  9. <requestFiltering>
  10. <!--限制大小1024M-->
  11. <requestLimits maxAllowedContentLength="1073741824" />
  12. </requestFiltering>
  13. </security>
  14. <aspNetCore processPath="%LAUNCHER_PATH%" hostingModel="InProcess">
  15. <handlerSettings>
  16. <handlerSetting name="enableShadowCopy" value="true" />
  17. <handlerSetting name="shadowCopyDirectory" value="../EasyTemplateWebShadowCopy/" />
  18. </handlerSettings>
  19. </aspNetCore>
  20. </system.webServer>
  21. </location>
  22. </configuration>
  23. <!--ProjectGuid: 22cdb11a-e496-4644-b5ea-05b6b27ac1de-->