Skip to content

Instantly share code, notes, and snippets.

@adsurbum
Created December 24, 2013 01:29
Show Gist options
  • Save adsurbum/8107508 to your computer and use it in GitHub Desktop.
Save adsurbum/8107508 to your computer and use it in GitHub Desktop.
generate self signed ssl
openssl genrsa -out key.pem 2048
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment