Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bind multiple SSLs on single website in IIS 8+

Tags:

iis

ssl

I have one website configured for Windows Server 2012 IIS 8. This one website can be accessed by xyz.com or abc.com (2 different top level domain names). Is it possible to configure SSLs for both?

like image 348
user3328472 Avatar asked Apr 14 '14 18:04

user3328472


People also ask

Can you have 2 SSL certificates on one server?

A lot of people want to know whether you can install multiple SSL certificates on a single domain. The answer is yes.

Can we install multiple SSL certificates IIS?

From a single IP address and port, you can use multiple SSL certificates to secure various websites on a single domain (e.g., www.yourdomain.com, site2.yourdomain.com) or across multiple domains (e.g., www.domain1.com, www.domain2.com).

How do I add multiple bindings in IIS?

Hosting Multiple Website on IIS using Host HeadersRight-click TestSite and select Edit Bindings. Select the binding you need and click Edit. Specify the unique host name the users will address to, like TestSite, in the Host Name field. Now you can start the second website as well.


2 Answers

Yes. You can configure two different domains with two different certificates for the same IP and port no(443). After providing the domain name in Binding, enable check box Require Server Name Identification(IIS8). If you do not enable this check box, two websites will have the same single certificate, if you change one website binding file, it will reflect in other website also.. I have experienced.

Please refer below link. http://www.orcsweb.com/blog/fred/host-different-ssls-on-one-ip-with-iis-8-sni/

like image 130
Ponnappa Avatar answered Sep 27 '22 20:09

Ponnappa


As Windows Azure web site is powered by IIS, you can see from the offerings that it is possible to bind multiple SSL to a single site,

http://azure.microsoft.com/en-us/pricing/details/web-sites/#web-sites

The trick is to use SNI,

http://www.iis.net/learn/get-started/whats-new-in-iis-8/iis-80-server-name-indication-sni-ssl-scalability

like image 31
Lex Li Avatar answered Sep 27 '22 21:09

Lex Li