user3328472
user3328472

Reputation: 231

Bind multiple SSLs on single website in IIS 8+

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?

Upvotes: 19

Views: 51533

Answers (4)

Yat Fei Leong
Yat Fei Leong

Reputation: 841

For the latest version for check Require Server Name Indication for both site that hosted with different certificate

enter image description here

Upvotes: 1

Ponnappa
Ponnappa

Reputation: 421

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/

Upvotes: 42

Lex Li
Lex Li

Reputation: 63244

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

Upvotes: 1

Brandon Spilove
Brandon Spilove

Reputation: 1569

Yes you can add multiple https bindings each with their own separate ssl certificate to the same site in IIS. However you'll want to bind them to separate IP addresses so that the certificate for xyz.com is bound using the IP address for xyz.com, and the certificate for abc.com is bound using the IP address for abc.com. But frankly, it'd be better practice to have one redirect to the other, or just make 2 sites in IIS and keep everything separate.

Upvotes: 0

Related Questions