프로그래밍/기타

ii7 파일 업/다운로드 용량제한 풀기

p-a-r-k 2016. 10. 17. 10:32
반응형

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>


반응형