IIS 設定伺服器上傳最大附件
系統環境:win8
開發環境:asp.net mvc
功能:檔案上傳
在上傳檔案時,比較小的檔案會直接上傳成功,大的檔案頁面報錯:“檔案超過了最大請求長度”。
經過查明:
需要在配置檔案裡面設定檔案上傳限定的兩個屬性值:maxAllowedContentLength,maxRequestLength 允許上傳檔案的長度,和請求的長度,兩個大小需要設定一致,如果不一致,則以請求長度為準。
The maximum request size in kilobytes. The default size is 4096 KB (4 MB). 預設請求長度只有4M. 設定的單位都為byte
<system.web>
<httpRuntime maxRequestLength
</system.web>
<system.webServer>
<security>
<requestFiltering>
<!--<requestLimits maxAllowedContentLength="1073741824"/>-->
<requestLimits maxAllowedContentLength="2147483648"/>
</requestFiltering>
</security>
</system.webServer>
以上是對某個站點或者某個應用上限制大小,配置的web.config
要以上配置有效的前提是,要確保applicationhost.config中對該項修改的許可權已經放開。
applicationhost.config檔案路徑在 C:\Windows\System32\inetsrv\config 下
可通過如下設定進行更改:
modify the overrideModeDefault from "Deny" to "Allow" like so:
<sectionGroup name="system.webServer">
<sectionGroup name="security">
<section name="requestFiltering" overrideModeDefault="Allow
</sectionGroup>
</sectionGroup>
確認修改過applicationhost.config中上述設定以後,再進行web.config中的設定。
二: 也可以直接設定伺服器級別的檔案上傳大小,在applicationhost.config檔案中加上以下欄位
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
<security>
<system.webServer>
也可以使用命令模式修改:
也可以使用命令列模式修改applicationhost.config:
%windir%\system32\inetsrv\appcmd set config -section:requestFiltering -requestLimits.maxAllowedContentLength:2147483647
命令模式尚未試過。