Setting up SSL for your Rails app

In March 2015, I wrote about setting up SSL for your Rails app. Back then, only 16.4% of the 148.486 most popular website had secure SSL implemented.
Joshua Jansen
May 9, 2016

In March 2015, I wrote about setting up SSL for your Rails app. Back then, only 16.4% of the 148.486 most popular website had secure SSL implemented. While this has improved quite a lot, it's still only 41.7% of the 141.160 most popular sites that are rolling secure SSL.

I think this has a lot to do with people either not really being aware the advantages of SSL or simply not knowing how to implement it.
In this article, I will go into the latter by writing a step by step guide for setting up SSL for your Rails app.

tl;dr steps for enabling SSL for you Rails app:

  1. Generate a key and CSR with an SSL library (i.e. OpenSSL)
  2. Upload CSR to SSL vendor and request certificate
  3. Upload SSL certificate and key to server
  4. Add SSL certificate to NGINX config and reload

Step 1: Generating the CSR (certificate signing request)

Before you can order a new certificate, you'll have to generate a certificate signing request. You can do this either on your local machine or your server.

Given you have OpenSSL installed, you can fire up your terminal and execute:

You'll be prompted to supply information regarding the requesting organization.
It's important that you fill in the domain you are going to use as the "Common name". Most certificates also automatically include the www. prefix, so only enter the top level domain name here. Be sure to check this with your vendor.

Screenshot-2015-03-06-16-47-51

Step 2: Request your certificate

Choose any SSL provider and create your account. At Firmhouse, we use te Dutch vendor sslcertificaten.nl.

Upload/paste your CSR and order your certificate. The vendor will ask you to go through a verification process to ensure that you are the administrator of the domain name. For the simple certificates, this is usually done with an email confirmation.

After confirming your identity, you'll be able to download the SSL certificates.

Step 3: Upload certificate and key to your server

Before you can upload your SSL key to your server, you'll have to combine it with the root certificates from your SSL vendor.
To do that, open your key and append the root certificate to the file. The order here is important; it should be:

  1. Your certificate
  2. Intermediate certificates
  3. Root certificate

So in my case it would be:

Screenshot-2015-03-09

When merged, you can upload this file to your server, along with the key you've generated in step 1. Make sure to upload it to a directory that nginx can read.

Step 4: Configure NGINX

Update your nginx config for your Rails app with the proper paths.

Reload nginx with "service.nginx reload" and you're done!

Step 5: Extras

Bonus points if you enable force_ssl in your production.rb, Rails will then redirect all HTTP requests to their HTTPS equivalent.

Also, if you load any external resources in your application. For example assets via a CDN or embedded content in an iframe, make sure to use HTTPS for these as well.

If you have any questions or feedback, feel free to ping me on Twitter @joshuajansen or email me at mailto:joshua@firmhouse.com.

Receive updates
Receive our latest product updates and blog posts in your inbox. No spam, just the latest about the Firmhouse platform.
Read about our privacy policy.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.