WHEREIS

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 관리자에서 아래와 같이 조치해 주면 된다.

"해당 사이트" -> "요청 필터링" -> "우측 기능설정 편집" -> 허용되는 최대 콘텐츠 길이(수정)


- 끝 -

이 글을 공유합시다

facebook twitter kakaoTalk kakaostory naver band
loading