Skip to content

Instantly share code, notes, and snippets.

@cicorias
Created February 18, 2016 15:25
Show Gist options
  • Save cicorias/01d6ce45f902b2c2afc9 to your computer and use it in GitHub Desktop.
Save cicorias/01d6ce45f902b2c2afc9 to your computer and use it in GitHub Desktop.
working Certificate Generation Commands
openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment