Mehrere Subdomänen unter IIS7 werden gleichzeitig mit dem https-Protokoll konfiguriert, aber IIS7 unterstützt standardmäßig einen einzelnen 443-Port, was zu Portkonflikten führt.
Lösung: Konfigurieren Sie zunächst unterschiedliche Ports für jeden Domänennamen. 444, 445, 446 usw.
Suchen Sie dann
in: C:Windowssystem32inetsrvconfigapplicationHost.config<binding protocol="https" bindingInformation="*:443" /> <binding protocol="https" bindingInformation="*:444" /> <binding protocol="https" bindingInformation="*:445" />
und ändern Sie es in:
<binding protocol="https" bindingInformation="*:443:www.domain.com" /> <binding protocol="https" bindingInformation="*:443:www.domain.com" /> <binding protocol="https" bindingInformation="*:443:www.domain.com" />
Denken Sie daran, es für jede entsprechende Site zu ändern.
Wählen Sie dann das Zertifikat auf der IIS-Site erneut aus und starten Sie die IIS-Site neu.
Das obige ist der detaillierte Inhalt vonDetaillierte Einführung in die Konfiguration eines SSL-Zertifikats in IIS7 und die Bindung mehrerer Domänennamen an Port 443. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!