| | |
| | | <appSettings> |
| | | <!-- 廊坊服务 --> |
| | | <add key="lfServer" value="http://127.0.0.1:12316/server"/> |
| | | <!-- 临时目录 --> |
| | | <add key="tempFolder" value="D:\LF\temp"/> |
| | | <!-- 上传目录 --> |
| | | <add key="uploadFolder" value="D:\LF\upload"/> |
| | | <!-- 下载目录 --> |
| | |
| | | <connectionStrings/> |
| | | <system.web> |
| | | <compilation debug="true" targetFramework="4.5.2"/> |
| | | <httpRuntime maxRequestLength="2147483647"/> |
| | | <!-- maxRequestLength是上传文件时最大size(单位是KB,默认值是4096kb),executionTimeout是请求session(单位是秒,默认值是110s) --> |
| | | <httpRuntime maxRequestLength="2147483647" executionTimeout="14400"/> |
| | | <pages controlRenderingCompatibilityVersion="4.0"/> |
| | | </system.web> |
| | | <system.webServer> |
| | | <security> |
| | | <requestFiltering> |
| | | <!-- 1GB = 1073741824 --> |
| | | <requestLimits maxAllowedContentLength="2147483647"/> |
| | | </requestFiltering> |
| | | </security> |