[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] SSL on RAQ2



> Could someone please tell me, or point me to, the steps involved with
> installing SSL on a RAQ2 for the main site and also virtual sites?
>
> Thanks

This worked for me. Follow the directions in the SSL pdf available from cobalt for the main site. To get a vsite going don't use the PEM password option. I don't think it's a big deal not to use it, because the server still
needs a password to start. Here are the commands substitute in your site...

Generate a key:

/usr/sbin/openssl genrsa -out /etc/httpd/conf/ssl.key/www.yousrsite.com.key 1024

Generate CSR:

/usr/sbin/openssl req -new -key /etc/httpd/conf/ssl.key/www.yousrsite.com.key -out /etc/httpd/conf/ssl.csr/www.yousrsite.com.csr

Generate Test CRT

/usr/sbin/openssl x509 -req -days 365 -in /etc/httpd/conf/ssl.csr/www.yousrsite.com.csr -signkey /etc/httpd/conf/ssl.key/www.yousrsite.com.key -out /etc/httpd/conf/ssl.crt/www.yousrsite.com.crt

HTH,

Joe