본문 바로가기

Programming

IIS7 - 파일업로드 사이즈 조정하기

Windows Server 2008을 설치하여 IIS7에 웹하드 솔루션을 올렸는데 IIS6에서 이상없이 올라가던 대용량 파일이 더이상 올라가지 않고 오류가 나는 상황이 발생했다.
IIS7에서는 새로운 request-filtering 이 생겼는데 여기서 사이즈가 30000000으로 제한되어 있다.
28.6MB 이상의 파일을 올릴려면 아래 원문과 같이 셋팅을 따로 해줘야 한다.


------------------------------------------------------------------------------------

IIS7 - Adjusting File upload size in IIS7

IIS7 has a new request-filtering feature (replacement for url-scan) that limits the size of the content sent or received. The default for this is 30000000 (28.6Mb)

The syntax to change this limit is:
%windir%\System32\inetsrv\appcmd.exe set config "Default Web Site" -section:requestFiltering -requestLimits.maxAllowedContentLength:104857600 -commitpath:apphost

where "Default Web Site" is the name of the Site you want to change the limit