Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple SSL certificates for one web site?

Status
Not open for further replies.

MatthewP

Programmer
Jan 16, 2001
176
GB
I have a web site with various domain names pointing to it. I need this web site SSL secured, but of course an SSL certificate only contains one domain name. Does anyone know if it is possible to somehow install multiple certificates for a single web site?

Thanks,
Matt.
 
I believe this is only possible if the web server knows what domain name was used to reach it (so it may return the correct certificate). If the HTTP client sent the domain name in the RequestURI of the Request-Line, it is possible:

GET HTTP/1.1

However, relative paths are also valid (and something you are more likely to see):

GET /pub/ HTTP/1.1

Perhaps someone else has a suggestion on how a web server would know which certificate to send, or suggest a product that has this capability.
 
Oops, I put the cart before the horse. Since the SSL session must be negotiated before the HTTP client sends the request, relying on the RequestURI is not possible.

Sorry for the confusion.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top