修改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,如下所示。


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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章