IIS7 용량 제한 및 SiteGalaxy 업로드 용량 제한 풀기 | window 2008
이기복 2009.09.17 09:26

window 2008 IIS7 에서는 콘텐츠 용량 제한이 기본 30Mb 로 제한되어 있다.

 

이것을 푸는 방법은

 

아래와 같다.

 

c:\windows\system32\inetsrv\config\applicationHost.config 파일을 열어

<requestFiltering>

......

<requestLimits maxAllowedContentLength="1073741824" maxUrl="4096" maxQueryString="2048" />
</requestFiltering>

 

빨간줄을 추가한다.

 

 

===============================================================================================

 

window 2008 IIS7 에서 SiteGalaxy 업, 다운로드 용량제한 푸는 방법은 아래와 같다.

 

역시 이것도

 

c:\windows\system32\inetsrv\config\applicationHost.config 파일을 연다

 

<system.webServer>

  <asp enableParentPaths="true" scriptErrorSentToBrowser="true">
    <cache diskTemplateCacheDirectory="%SystemDrive%\inetpub\temp\ASP Compiled Templates" />
      <limits bufferingLimit="1073741824" maxRequestEntityAllowed="1073741824" />
  </asp>

 

  .....

</system.webServer>

 

위와 같이 수정한다.

 

 

굿이 IIS를 다시 시작하지 않아도 바로 적용이 되는듯 하다.


 

+ Recent posts