Skip to content

Instantly share code, notes, and snippets.

@Lazhari
Created December 14, 2015 14:47
Show Gist options
  • Save Lazhari/0479fb57d4989cb28a70 to your computer and use it in GitHub Desktop.
Save Lazhari/0479fb57d4989cb28a70 to your computer and use it in GitHub Desktop.
Generate SSL certification using openssl
openssl genrsa -out server-key.pem 1024
openssl req -new -key server-key.pem -out server-csr.pem
openssl x509 -req -in server-csr.pem -signkey server-key.pem -out server-cert.pem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment