Skip to content

Instantly share code, notes, and snippets.

@razorthink-com
Created June 29, 2015 22:03
Show Gist options
  • Save razorthink-com/3b4083c52d4626917ad9 to your computer and use it in GitHub Desktop.
Save razorthink-com/3b4083c52d4626917ad9 to your computer and use it in GitHub Desktop.
Create SSL Certificate with OpenSSL
openssl genrsa -des3 -out <server.key> 1024
openssl req -new -key <server.key> -out <server.csr>
openssl rsa -in <server.key>.rzt -out <server.key>
openssl x509 -req -days 365 -in <server.csr> -signkey <server.key> -out <server.crt>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment