Skip to content

Instantly share code, notes, and snippets.

@erikhazzard
Created July 7, 2015 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikhazzard/518f4eb0298e0632095a to your computer and use it in GitHub Desktop.
Save erikhazzard/518f4eb0298e0632095a to your computer and use it in GitHub Desktop.
SSL steps for node
1) Generate CSR
`openssl req -new -newkey rsa:2048 -nodes -keyout files.mysite.key -out files.mysite.csr`
.csr is the -----BEGIN CERTIFICATE REQUEST----- file
.key is the private key ( namePrivatekey.key )
* CRT file is the following files cat'ed together in order: *
PRIVATE_KEY.crt (STAR_name_com.crt)
COMODORSADomainValidationSecureServerCA.crt
COMODORSAAddTrustCA.crt
PRIVATE_KEY.crt (STAR_name_com.crt)
@erikhazzard
Copy link
Author

Also, create account with google to register domain email (or handle it through aws)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment