-2

I have 1 IIS server that is hosting 3 domains, for example, example1.com, example2.com and example3.com. Each has it's own certificate. How can I install a separate certificate for each of these sites on IIS 7.5 ?

Currently using a UUC certificate with multiple domains on it is not an option.

Abhijeet Kasurde
  • 983
  • 9
  • 20
zillabunny
  • 186
  • 8
  • 3
    What research have you done? What have you tried? – MichelZ Jul 23 '14 at 16:09
  • I've looked through many articles on this site and MSDN http://serverfault.com/questions/284699/setup-iis-7-5-with-multiple-website-bindings-and-ssl I've setup many other production servers using this setup with wildcard certs, but I've never done it with multiple certs and compleatly different domain names. – zillabunny Jul 23 '14 at 16:21

1 Answers1

1

Just install them and select "SNI" (Server Name Indication) and enter the hostname.

Edit: SNI is an IIS8 feature. For 7.5 see:
Setup IIS 7.5 with multiple website bindings and SSL?

MichelZ
  • 11,068
  • 4
  • 32
  • 59
  • Can you elaborate on this? I thought this was only an IIS 8 feature? I'm using 7.5. – zillabunny Jul 23 '14 at 16:17
  • Also we're not using a Wildcard certificate. – zillabunny Jul 23 '14 at 16:19
  • Oh yes, you're right. You need IIS8 for that. See this then: http://serverfault.com/questions/284699/setup-iis-7-5-with-multiple-website-bindings-and-ssl – MichelZ Jul 23 '14 at 16:22
  • that uses a wildcard certificate and different subdomains, the root level domain is still the same. – zillabunny Jul 23 '14 at 16:25
  • I'm using virtual hardware, is there anyway I could add IP's to the server and pull this off? – zillabunny Jul 23 '14 at 16:27
  • 1
    It is not possible using IIS7.5. The only possibilities are wildcard/SAN or differnet IP/Port combination per Certificate – MichelZ Jul 23 '14 at 16:28
  • 1
    Yes, with additional IP's it's possible – MichelZ Jul 23 '14 at 16:28
  • Heh Scratch that apprently you can't add a second nic in azure http://serverfault.com/questions/565675/can-i-add-a-second-network-adapter-to-my-azure-vm I think I may have to use a UCC certificate to solve this issue. thanks for your help MichelZ – zillabunny Jul 23 '14 at 16:34
  • We went with a UCC certificate and we were able to solve the issue. – zillabunny Oct 29 '14 at 19:35