Guest User

Untitled

a guest
Jul 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # openssl genrsa -des3 -out www.google.com.key 2048
  2.  
  3. export HOSTNAME=ci.prod.ny-c3.com
  4. openssl genrsa -des3 -out ${HOSTNAME}.key 2048
  5. # Fill in Cert info basics
  6. openssl req -new -key ${HOSTNAME}.key -out ${HOSTNAME}.csr
  7. openssl x509 -req -days 365 -in ${HOSTNAME}.csr -signkey ${HOSTNAME}.key -out ${HOSTNAME}.crt
Add Comment
Please, Sign In to add comment