I generated KEY and CSR according to instructions from the following wiki thread: http://www.hostingrails.com/forums/wiki_thread/44
I then generated the CRT following instruction from this forum thread:
http://www.hostingrails.com/forums/everything_else_thread/779
Now I just want to be sure that I proceeded correctly. Here are the commands that I used:
username@hostname [~/ssl]# openssl genrsa -out *.mydomain.com.key 1024
username@hostname [~/ssl]# openssl req -new -key *.mydomain.com.key -out *.mydomain.com.csr
username@hostname [~/ssl]# openssl x509 -req -days 365 -in server.csr -signkey *.mydomain.com.key -out *.mydomain.com.crt
The purpose of all this: I want to secure a domain and all it's future subdomains with one certificate.
My question is did I proceed correctly (using "*.mydomain.com" format) and if so could you please install it for me (those are the only files in my /ssl folder).
Thanks in advance.
Pascal