Carpe Programming/server

[IIS] asp upload 용량 설정

nolite 2013. 6. 21. 12:11

- web.config -

 

<?xml version="1.0" encoding="UTF-8"?>
<configuration>

    <system.web>

        <httpRuntime executionTimeout="240"
                           maxRequestLength="10240"                <====   10MB
                           useFullyQualifiedRedirectUrl="false"
                           minFreeThreads="8"
                           minLocalRequestFreeThreads="4"
                           appRequestQueueLimit="100"/>
    </system.web

</configuration>

 

 

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

 

[win2003]


1. iis 로컬 컴 이름 우클릭 -> 속성 -> 메타베이스 직접 편집 허용 체크

2. C:\WINDOWS\system32\inetsrv\MetaBase.xml 수정
  
   - AspBufferingLimit         ="209715200"
   - AspMaxRequestEntityAllowed="209715200"

 

window7 : 사이트 -> asp 더블클릭 -> 제한속성 -> 응답 버퍼링 제한 : 209715200

728x90