보통은 하나의 웹서버에 443 포트는 하나만 열 수 있지만 IIS7 에서 secure binding 을 이용하면
Multi-domain SSL(SAN) 또는 Wildcard SSL 인증서로 여러개의 사이트에 443 포트를 연결 할 수 있다.
1. IIS에 인증서 설치
- https://www.qtrustssl.com/guide/install_iis7_pfx.php 참고
2. CMD 창에서 secure binding 설정
2-1) Secure Binding 추가 명령어
appcmd set site /site.name:"사이트 이름" /+bindings.[protocol='https',bindingInformation='*:443:호스트 헤더 값']
2-2) 예제
C:\> cd C:\Windows\System32\inetsrv
C:\...> appcmd set site /site.name:"web1" /+bindings.[protocol='https',bindingInformation='*:443:www.my.kr']
C:\...> appcmd set site /site.name:"web2" /+bindings.[protocol='https',bindingInformation='*:443:dev.my.kr']
2-3) Binding 제거
C:\...> appcmd set site /site.name:"web1" /-bindings.[protocol='https',bindingInformation='*:443:www.my.kr']
IIS6 에서의 secure binding - 참고 사이트
- https://technet.microsoft.com/ko-kr/library/cc756897(v=WS.10).aspx
'기타 개발관련' 카테고리의 다른 글
IIS + PHP 에서 오라클 연동 설치 (0) | 2017.10.29 |
---|---|
PHP + MSSQL 연결 (0) | 2017.02.15 |
telnet 에서 smtp 테스트 메일발송 (0) | 2016.02.05 |
가장 저렴한 SSL인증서. comodo positive ssl 인증서 (0) | 2016.01.27 |
COMODO Positive SSL vs Essential SSL (0) | 2016.01.27 |