SSL can only segmented by IP and Port. You can however can run SSL over a different port than 443 by simply adding a binding for https and a different port.
In IIS 7.x, in the Bindings for the site, you would add one for SSL and change the port:
What would also need to happen, which isn't shown in this image is the selection of the appropriate SSL certificate which would need to be configured on the server. With that set, you would then access the site by going to:
发布评论
评论(1)
SSL只能按IP和端口进行分段。不过,您可以通过简单地添加 https 和不同端口的绑定,在 443 之外的不同端口上运行 SSL。
在 IIS 7.x 中,在站点的绑定中,您可以为 SSL 添加一个并更改端口:
还需要选择适当的 SSL 证书(此图中未显示),该证书需要在服务器上进行配置。完成该设置后,您可以通过以下方式访问该网站:
https://mysite:1234/...
SSL can only segmented by IP and Port. You can however can run SSL over a different port than 443 by simply adding a binding for https and a different port.
In IIS 7.x, in the Bindings for the site, you would add one for SSL and change the port:
What would also need to happen, which isn't shown in this image is the selection of the appropriate SSL certificate which would need to be configured on the server. With that set, you would then access the site by going to:
https://mysite:1234/...