IIS 업로드 파일 용량 제한 해결
2016. 3. 3. 09:49ㆍprogramming/WebService
728x90
이 버전은 IIS7 버전에서 작성되었습니다.
1.
%WinDir%\System32\inetsrv\config\applicationHost.config 파일 수정
<requestFiltering> 태그 사이
<requestLimits maxAllowedContentLength="1073741824" maxUrl="4096" maxQueryString="2048" />
<asp> 태그 안
<limits bufferingLimit="1073741824" maxRequestEntityAllowed="1073741824" />
추가
2.
프로젝트 파일 안 Web.config 안에
<httpRuntime targetFramework="4.5.2" maxRequestLength = "102400" /> 추가
IIS 에서 요청필터링 - 기능설정 편집
최대 콘텐츠 길이를 변경합니다.
728x90
'programming > WebService' 카테고리의 다른 글
'/' 응용 프로그램에 서버 오류가 있습니다. (0) | 2016.03.23 |
---|---|
[WebService] '/' 응용 프로그램에 서버 오류가 있습니다. (2) | 2016.02.12 |