1234567891011121314151617181920212223 |
- <?xml version="1.0"?>
- <!--
- 有关如何配置 ASP.NET 应用程序的详细信息,请访问
- http://go.microsoft.com/fwlink/?LinkId=169433
- -->
- <configuration>
- <appSettings>
- <add key="backup" value="D:\公共安全事业部\GISShow\service\FileServices\项目管理上传备份"/>
- </appSettings>
- <system.web>
- <compilation />
- <httpRuntime maxRequestLength="2097151" executionTimeout="36000" />
- </system.web>
- <system.webServer>
- <modules runAllManagedModulesForAllRequests="true" />
- <security>
- <requestFiltering>
- <requestLimits maxAllowedContentLength="2147483647" />
- </requestFiltering>
- </security>
- <directoryBrowse enabled="true"/>
- </system.webServer>
- </configuration>
|