vote up 3 vote down star

I currently need to have 2 subdomains under the same domain under SSL.
Both subdomains (www and affiliate) are on the same IIS server, under the same IP, and each one has specified a host header value (www.mydomain.com and affiliate.mydomain.com)

The first subdomain (www), which is the default, works great, with and without SSL.
The second subdomain works perfect under HTTP.

The problem is that I just purchased and installed the SSL certificate for the affiliate subdomain, and when you go to https://affiliate.mydomain.com, you get redirected to http://www.mydomain.com

I'm guessing the problem lies in the fact that I can't specify a host header value for SSL? (the dialog where I normally set the host header value doesn't have that option in the bottom part, dedicated to SSL).

What can I do about this? Should I have each subdomain in a separate IP? Is this not doable at all?

Thanks! Daniel

flag

69% accept rate

4 Answers

vote up 3 vote down check

"I'm guessing the problem lies in the fact that I can't specify a host header value for SSL"

You guessed right. You will need two IP addresses.

link|flag
vote up 3 vote down

I am not sure what web server you are running, but in IIS 6 on windows server 2003, you can use host headers for SSL sites, thus allowing them to be on the same IP Address.

http:// www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/596b9108-b1a7-494d-885d-f8941b07554c.mspx?mfr=true

EDIT: This will only work if the certificate is a wildcard certificate. Otherwise, subdomain "affiliate" will try to use the same certificate as subdomain "www", and visitors will get a warning.

link|flag
he doesn't have a wildcard certificate. – Greg Dean May 27 at 17:39
This is a good point though; a wildcard could work because both hosts are in the same domain. – sylvarking May 27 at 17:44
This worked, kinda, but not for my situation. Apparently I need a wildcard certificate for this. When I did it, my affiliate subdomain is now no longer redirected to www, but i get a warning that the SSL cert is for www... Worse part is that I'm having trouble undoing what I did :-) I'll see whether the separate IPs thing works. – Daniel Magliola May 27 at 17:45
vote up 2 vote down

The problem is fundamental to the way HTTPS works.

Virtual hosting relies on the "Host" header introduced in HTTP/1.1. That's part of the HTTP protocol, but from the standpoint of the SSL protocol, the HTTP layer is "application data", and can't be transmitted until the SSL handshake has been completed.

However, the server certificate is presented during the handshake. The HTTP server hasn't seen the "Host" header yet, so it wouldn't know which certificate to send. Using a distinct IP address works, because that's visible at the IP layer below SSL.

link|flag
Thank you for the explanation! – Daniel Magliola May 27 at 17:46
vote up -1 vote down

In the particular situation you are where you need 2 subdomains of the same domain a WildCard certificate has to work... I use a wildcard cert since 3 years for dozens of sites, and no customer has reported errors

If you have something telling the cert is for "www", then your cert is not a true wildcard cert, or you are experiencing some kind of browser caching issues or you are using 2 copies of the cert and you updatet only one of them, or you forgot restarting the server, or .. I donno :)

link|flag
I don't have a wildcard cert – Daniel Magliola Jul 16 at 13:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.