Skip to content

Instantly share code, notes, and snippets.

View Casual3498's full-sized avatar
👁️
Big Brother is watching you

Sergei Popov Casual3498

👁️
Big Brother is watching you
View GitHub Profile
@tadast
tadast / ssl_puma.sh
Last active January 29, 2024 04:41 — forked from trcarden/gist:3295935
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