Skip to content

Instantly share code, notes, and snippets.

View zautomata's full-sized avatar
🌴
On vacation

zautomata

🌴
On vacation
  • BH, Brazil
View GitHub Profile
@zautomata
zautomata / ssl_puma.sh
Last active June 12, 2017 21:04 — 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