Web.config 754 B

1234567891011121314151617181920212223
  1. <?xml version="1.0"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. http://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <appSettings>
  8. <add key="backup" value="D:\公共安全事业部\GISShow\service\FileServices\项目管理上传备份"/>
  9. </appSettings>
  10. <system.web>
  11. <compilation />
  12. <httpRuntime maxRequestLength="2097151" executionTimeout="36000" />
  13. </system.web>
  14. <system.webServer>
  15. <modules runAllManagedModulesForAllRequests="true" />
  16. <security>
  17. <requestFiltering>
  18. <requestLimits maxAllowedContentLength="2147483647" />
  19. </requestFiltering>
  20. </security>
  21. <directoryBrowse enabled="true"/>
  22. </system.webServer>
  23. </configuration>