• |
  • |
  • |
HOST : ns1.ohseon.com
I P   : 35.185.153.15
HOST : ns2.ohseon.com
I P   : 104.155.205.11
>
웹호스팅
>
보안서버 SSL
>
SSL 설치가이드
>
IIS6.0 Multi

1. 중복 포트 사용 제한

SSL통신(https)은 호스트해더를 지원하지 않습니다. 때문에 Standard 인증서는 중복 포트 기능을 지원하지 않습니다.
WildCard / Multi Domain 인증서는 한개의 인증서에 여러 도메인을 등록 할 수 있어 호스트 해더 구분 없이 중복 포트 사용 가능합니다.

예) WildCard Domain 인증서


2. 인증서 설치

인증서 설치 방법은 일반 Standard 인증서와 동일 합니다. [인증서 설치 바로가기]
주의 : SSL포트가 중복 되지 않도록 각각 다르게 설정합니다.


3. 중복 포트 설정

#설명 : 명령어 사용 방법
cscript.exe C:\Inetpub\AdminScripts\adsutil.vbs set w3svc/[식별자]/SecureBindings ":443:[호스트 헤더 값]
# 설명 : 각 사이트의 식별자 코드와 호스트 헤더를 사용하여 명령어 작성를 작성하여
Command창 (시작 → 실행 → cmd) 에 입력 합니다.


C:\>cscript.exe C:\Inetpub\AdminScripts\adsutil.vbs set w3svc/1489029442/SecureBindings ":443:sso.ucert.co.kr"
Microsoft (R) Windows Script Host 버전 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.

SecureBindings : (LIST) ":443:sso.ucert.co.kr"

C:\>cscript.exe C:\Inetpub\AdminScripts\adsutil.vbs set w3svc/1359436333/SecureBindings ":443:dev.ucert.co.kr"
Microsoft (R) Windows Script Host 버전 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.

SecureBindings : (LIST) ":443:dev.ucert.co.kr"

C:\>cscript.exe C:\Inetpub\AdminScripts\adsutil.vbs set w3svc/855128643/SecureBindings ":443:www.ucert.co.kr"
Microsoft (R) Windows Script Host 버전 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.

SecureBindings : (LIST) ":443:www.ucert.co.kr"

C:\>
참고. SecureBindings 삭제 방법
#설명 : 명령어 사용 방법
cscript.exe C:\Inetpub\AdminScripts\adsutil.vbs delete w3svc/[식별자]/SecureBindings
C:\>cscript.exe C:\Inetpub\AdminScripts\adsutil.vbs delete w3svc/855128643/SecureBindings
Microsoft (R) Windows Script Host 버전 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.

deleted property "SecureBindings"
C:\>

  • |
  • |
  • |
  • |
  • |