我正在使用Kendo上传文件控件。如果我上传多个文件,每个文件少于6MB,则效果很好。如果选择多个文件(> = 6MB),则每个文件的进度约为10%,然后停止很长时间,然后慢慢继续完成。 这会在使用https的生产站点上发生,而不是在使用HTTP的测试站点(同一服务器上)或localhost上发生。
我的生产服务器是AWS上的EC2实例。
下面是我的网络配置:
<webServices>
<jsonSerialization maxJsonLength="2147483644"></>
</webServices>
...
<httpRuntime targetFramework="4.5" maxRequestLength="6291456" />
...
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>