修改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

相關文章
相關標籤/搜索