zoukankan      html  css  js  c++  java
  • IIS7.5只能上传2M文件的解决办法

    <system.web>
      
    <httpRuntime executionTimeout="36000" maxRequestLength="2097151"/>
      
    <!--maxRequestLength:上传的大小,单位K   ,executionTimeout:设置超时时间,单位:秒。(默认是90秒) -->
    </system.web>
    <system.webServer>
      
    <security>
        
    <requestFiltering>
          
    <requestLimits maxAllowedContentLength="2147483647" />
        
    </requestFiltering>
      
    </security>
    </system.webServer>
  • 相关阅读:
    5.5 使用Hystrix实现断路器
    第5章 使用Spring Cloud和Netflix Hystrix的客户端弹性模式
    4.4 通过Spring Eureka注册服务
    MT【138】对称乎?
    MT【137】多少个?
    MT【136】一道三次函数的最佳逼近问题
    MT【135】条件线性化
    MT【134】待定系数
    MT【133】磨刀不误砍柴工
    MT【132】倒序相加因式分解
  • 原文地址:https://www.cnblogs.com/linyechengwei/p/2038997.html
Copyright © 2011-2022 走看看