Rails 2.3.11
I'm not really sure how to start. I found this here on SO, but the only response didn't elaborate on setting up Apache.
My site's hosted with BlueHost, fyiy.
Rails 2.3.11
I'm not really sure how to start. I found this here on SO, but the only response didn't elaborate on setting up Apache.
My site's hosted with BlueHost, fyiy.
I assume you have SSH access with this solution.
Login via ssh
$>openssl genrsa -out host.key 2048
$>openssl req -new -nodes -key host.key -out host.csr
Above command will ask you a bunch of questions. Your input needs to match the domain registration values.
$>cat host.csr
<VirtualHost *:443>
SSLEngine on
SSLCertificateFile /etc/httpd/conf/ssl.crt/host.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/host.key
SSLProtocol All -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT56:+HIGH:+MEDIUM:!SSLv2:!RC4:+EXP
</VirtualHost>