Skip to content

Instantly share code, notes, and snippets.

@kofno
kofno / ssl_puma.sh
Created January 17, 2017 14:53 — forked from tadast/ssl_puma.sh
localhost SSL with puma
# 1) Create your private key (any password will do, we remove it below)
$ cd ~/.ssh
$ openssl genrsa -des3 -out server.orig.key 2048
# 2) Remove the password
$ openssl rsa -in server.orig.key -out server.key