Reputation: 5487
I currently have a site residing at https://beta.myapp.mydomain.com.
We would like to change this to https://myapp2.mydomain.com and have acquired the SSL certificate to do this. We'd like to do this in a manner that is transparent to our current users.
However, IIS won't let me add a second SSL binding to port 443, and I don't see a way to add another cert to the existing binding.
Is there an approach that will let me accomplish this without a wildcard cert?
Upvotes: 0
Views: 71
Reputation: 1569
You cannot bind 2 SSL certs to the same website, you have to set up the myapp2 site as a second site and bind your SSL cert to it. And so it depends on your definition of "transparent". You can add a redirect from the beta site to the myapp2 site, that would be pretty transparent I would think.
Upvotes: 1