项目中用户需要上传会议用的超大的文件,我们可以通过设置在单个会议期间允许用于存储内容的最大文件空间量来实现。
MaxUploadFileSizeMb 不限制用于 Lync Web App 的文件上载设置。Lync Web App 的文件大小上载限制设置为大约 30MB,并由以下 IIS web.config 文件控制:/DataCollabWeb/Int[Ext]/Handler/web.config。若要配置用于 Lync Web App 的文件大小上载限制,请更新 web.config 文件中的 maxRequestLength
和 maxAllowedContentLength
,如下所示。
<system.web>
<!--
Since this handler is used to upload files to DMCU the request size (in kilobytes)
has to fit max allowed file size uploaded by Lync Web App client.
The timeout has to reflect the min client bandwidth. Timeout of 600 secs
and 512 Kbits of *client* bandwidth would result into aproximately 30 Mbytes
for Lync Web App upload size limit.
-->
<httpRuntime maxRequestLength="500000" executionTimeout="600" />
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="524288000" />
</requestFiltering>
</security>
假如你有多个前段服务器则必须为每个前端服务器更新 web.config 文件。
本文转自legendfu51CTO博客,原文链接: http://blog.51cto.com/legendfu/1298084,如需转载请自行联系原作者