Skip to content

Instantly share code, notes, and snippets.

@rumkin
Created February 15, 2014 13:20
Show Gist options
  • Save rumkin/9019237 to your computer and use it in GitHub Desktop.
Save rumkin/9019237 to your computer and use it in GitHub Desktop.
Generate open ssl certificate
openssl genrsa -out privatekey.pem 1024
openssl req -new -key privatekey.pem -out certrequest.csr
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment