IIS 7+ 에서 운영되는 ASP.NET 웹 응용프로그램의 web.config 에 아래와 같이 설정합니다.
<system.web>
<httpRuntime maxRequestLength="153600" executionTimeout="900" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="157286400" />
</requestFiltering>
</security>
</system.webServer>
system.web > httpRuntime
의 maxRequestLength 는 ASP.NET 웹 응용프로그램이 허용하는 파일의 크기를 설정합니다. (단위는 KB Kilobyte 입니다.)
system.webServer > security > requestFiltering > requestLimits
의 maxAllowedContentLength 는 IIS 가 허용하는 요청 Request 의 길이를 설정합니다. (단위는 Byte 입니다.)
이 사이트는 광고를 포함하고 있습니다.
광고로 발생한 수익금은 서버 유지 관리에 사용되고 있습니다.This site contains advertisements.
Revenue generated by the ad servers are being used for maintenance.