프로그램

[iis] 403 - 사용 권한 없음: 액세스가 거부되었습니다.

지승준 2013. 10. 16. 14:38

 

 


C:\Windows\System32\inetsrv\config 경로에서 applicationHost.config 파일을 연다.

아래의 ipSecurity allowUnlisted 설정 부분을 true로 변경한다.

1
2
3
4
5
6
7
8
9
10
11
12
13
<location path="test.com">
    <system.webServer>
        <asp enableParentPaths="false" />
        <security>
            <ipSecurity allowUnlisted="true" />
        </security>
    </system.webServer>
    <system.ftpServer>
        <security>
            <ipSecurity enableReverseDns="false" />
        </security>
    </system.ftpServer>
</location
cs

 

* 참고 URL
http://support.microsoft.com/kb/942068/ko