How to install CloudFlare’s Free SSL on Laravel Forge

Cristian Tăbăcitu
1 min readOct 12, 2015

--

If you don’t want to pay for an SSL certificate, you can use CloudFlare’s free SSL. Its setup, though, isn’t that apparent and it seems like no one has asked or answered this particular question.

Assumptions:

  • you already have CloudFlare setup and your domain name points to it;
  • you manage your server with Laravel Forge (though the same steps should be true for any nginx server);

Steps:

  1. Generate a self-signed certificate on http://www.selfsignedcertificate.com/. It’ll give you the links to 2 files (private key and certificate). Download them.
  2. In your Forge panel, copy the contents of the above files in Sites > your-site > SSL Certificates > Install Existing Certificate. Don’t forget to click “Activate” once it’s installed.
  3. In your CloudFlare panel, under Crypto > SSL (with SPDY), choose “Full” (NOT Full strict).

Done! Enjoy your free SSL.

Why this works:

  • your user’s connection to the CloudFlare servers is SSL protected using CloudFlare’s SSL (so the green lock will show up);
  • CloudFlare’s connection to your server is SSL protected, thanks to your self-signed certificate (so your assets will have the proper https);

--

--

Cristian Tăbăcitu
Cristian Tăbăcitu

Written by Cristian Tăbăcitu

Creator of Backpack for Laravel & ScheduleThatEmail. I build web products - for work and for fun. www.tabacitu.com

Responses (3)