IIS 7.5 에서 기본적으로 파일 업로드가
30000000 byte (약 29M) 로 되어있다.
근데, 파일 업로드가 안 되면서 404 error 만 뜨다보니 추적이 어려웠다
아래와 같이 웹 document 경로에 web.config.xml 파일을 생성해 주던가
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".xadl" mimeType="text/xml" />
<mimeMap fileExtension=".xfdl" mimeType="text/xml" />
<mimeMap fileExtension=".xtheme" mimeType="text/xml" />
</staticContent>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1000000000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
아니면
IIS 관리자에서 아래와 같이 조치해 주면 된다.
"해당 사이트" -> "요청 필터링" -> "우측 기능설정 편집" -> 허용되는 최대 콘텐츠 길이(수정)
- 끝 -
AD (Active directory) 동기화 이슈 (0) | 2020.12.10 |
---|---|
윈도우 2012 GUI 복구 (0) | 2017.06.07 |
[윈도우] JBOSS AS 서비스 등록 (0) | 2017.05.12 |
윈도우 powershell/cmd 이용한 파일 다운로드 (0) | 2015.11.03 |
svchost.exe 프로세스 죽이기 (0) | 2015.10.26 |