Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSL Certificate for multiple servers

I want to use same SSL certificate in multiple servers, which type of SSL certificate should I use? Unified SSL certificate? or Wildcard SSL certificate?

Thanks

like image 702
TerryLi Avatar asked Dec 08 '22 11:12

TerryLi


2 Answers

Any certificate can be installed on multiple servers but your question requires more information on how you want to be advised. A wildcard SSL certificate will secure any subdomain that the Wildcard character is on. So if you have a certificate for *.domain.com then you can secure

  • secure.domain.com
  • bob.domain.com
  • charlie.domain.com

and the list can go on, however it won't work for sub.secure.domain.com as the wildcard only does the single level.

A unified certificate, depending on the provider would only give you 3 subdomains. mail, owa and autodiscover.domain.com

Also a standard certificate you can generally add SAN's too which will allow you to add subdomains under extra costs, but if you are only looking to secure 2 subdomains then a certificate with 1 SAN would be cheaper in most cases than a wildcard.

Give us an example of what you are trying to do and people can probably advise you better.

like image 194
RickK Avatar answered Jan 03 '23 10:01

RickK


Securing Multiple Servers With One SSL Certificate

To move your certificate between servers you will need to install the certificate on the same web server that you generated the CSR from. You can then export the SSL certificate and its private key to a PKCS#12 file, or if it is an non-Windows based server you will be able to copy the key and certificate files.

Click HERE for more details:

like image 22
John Eli Avatar answered Jan 03 '23 11:01

John Eli