1. 程式人生 > >IIS開多個HTTPS站點

IIS開多個HTTPS站點

ets ron www orm pro 默認 system32 app 站點

默認情況一個服務器的IIS只能綁定一個HTTPS也就是443端口

要實現多個站點對應HTTPS只能更改IIS配置

地址:C:\Windows\system32\inetsrv\config\applicationHost.config、

默認一個站點帶一個這樣的配置

<binding protocol="https" bindingInformation="*:443" />

修改成:

<binding protocol="https" bindingInformation="*:443:www.baidu.om" />

切記需要對應的每個站點都修改。

IIS開多個HTTPS站點