IIS7의 여러 하위 도메인은 동시에 https 프로토콜로 구성되지만 IIS7은 기본적으로 단일 443 포트를 지원하므로 포트 충돌이 발생합니다.
해결 방법: 먼저 각 도메인 이름에 대해 서로 다른 포트를 구성합니다. 예: 444, 445, 446
그런 다음 C:Windowssystem32inetsrvconfigapplicationHost.config
<binding protocol="https" bindingInformation="*:443" /> <binding protocol="https" bindingInformation="*:444" /> <binding protocol="https" bindingInformation="*:445" />
를 찾아 다음과 같이 수정합니다.
<binding protocol="https" bindingInformation="*:443:www.domain.com" /> <binding protocol="https" bindingInformation="*:443:www.domain.com" /> <binding protocol="https" bindingInformation="*:443:www.domain.com" />
각 해당 사이트에 대해 수정하는 것을 잊지 마세요.
그런 다음 iis 사이트에서 인증서를 다시 선택하고 iis 사이트를 다시 시작하세요.
위 내용은 IIS7에서 SSL 인증서를 구성하고 여러 도메인 이름을 포트 443에 바인딩하는 방법에 대한 자세한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!