修改Lync Web App 的文件大小上载限制

项目中用户须要上传会议用的超大的文件,咱们能够经过设置在单个会议期间容许用于存储内容的最大文件空间量来实现。前端

MaxUploadFileSizeMb 不限制用于 Lync Web App 的文件上载设置。Lync Web App 的文件大小上载限制设置为大约 30MB,并由如下 IIS web.config 文件控制:/DataCollabWeb/Int[Ext]/Handler/web.config。若要配置用于 Lync Web App 的文件大小上载限制,请更新 web.config 文件中的 maxRequestLengthmaxAllowedContentLength,以下所示。web


<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 文件。ide

相关文章
相关标签/搜索