Skip to content

Instantly share code, notes, and snippets.

@bandicoot86
Created August 27, 2014 21:00
Show Gist options
  • Save bandicoot86/985e1ed57e4bbd75c56c to your computer and use it in GitHub Desktop.
Save bandicoot86/985e1ed57e4bbd75c56c to your computer and use it in GitHub Desktop.
Create localhost certificate
openssl genrsa -out cloueda-key.pem 1024
openssl req -new -key cloueda-key.pem -out certrequest.csr
--common name localhost
openssl x509 -req -in certrequest.csr -signkey cloueda-key.pem -out cloueda-cert.pem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment