We have these separate sites: a.example.com, b.example.com, and c.example.com. Now we want to add an SSL Certificate to these sites.
There is a pretty good tutorial for this, but I have a couple questions:
Can I use one SSL certificate on these three sites?
If the answer of
1is yes, do I need to change the CSR generating commands for this?
list the commands below
#Must do these as root.
openssl genrsa -des3 -out example.com.key 2048
#you will be prompted to enter password
openssl rsa -in example.com.key -out example.com.key.nopass
#you will be prompted to enter password you created in last step
openssl req -new -key example.com.key.nopass -out example.com.csr
Common Nameoption in generating, you mean I just set it to*.example.com? – mitnk Sep 4 '12 at 10:07example.com, but*.example.comis typical. – David Schwartz Sep 4 '12 at 10:08