use letsencrypt naming convention

This commit is contained in:
AJ ONeal 2016-06-27 17:59:37 -06:00 committed by GitHub
parent 70d3bf5191
commit 98bed512b3
1 changed files with 9 additions and 9 deletions

View File

@ -24,31 +24,31 @@ openssl req \
# such as example.com, *.example.com, awesome.example.com # such as example.com, *.example.com, awesome.example.com
# NOTE: You MUST match CN to the domain name or ip address you want to use # NOTE: You MUST match CN to the domain name or ip address you want to use
openssl genrsa \ openssl genrsa \
-out certs/server/my-server.key.pem \ -out certs/server/privkey.pem \
2048 2048
# Create a request from your Device, which your Root CA will sign # Create a request from your Device, which your Root CA will sign
openssl req -new \ openssl req -new \
-key certs/server/my-server.key.pem \ -key certs/server/privkey.pem \
-out certs/tmp/my-server.csr.pem \ -out certs/tmp/csr.pem \
-subj "/C=US/ST=Utah/L=Provo/O=ACME Tech Inc/CN=${FQDN}" -subj "/C=US/ST=Utah/L=Provo/O=ACME Tech Inc/CN=${FQDN}"
# Sign the request from Device with your Root CA # Sign the request from Device with your Root CA
# -CAserial certs/ca/my-root-ca.srl # -CAserial certs/ca/my-root-ca.srl
openssl x509 \ openssl x509 \
-req -in certs/tmp/my-server.csr.pem \ -req -in certs/tmp/csr.pem \
-CA certs/ca/my-root-ca.crt.pem \ -CA certs/ca/my-root-ca.crt.pem \
-CAkey certs/ca/my-root-ca.key.pem \ -CAkey certs/ca/my-root-ca.key.pem \
-CAcreateserial \ -CAcreateserial \
-out certs/server/my-server.crt.pem \ -out certs/server/cert.pem \
-days 500 -days 500
# Create a public key, for funzies # Create a public key, for funzies
# see https://gist.github.com/coolaj86/f6f36efce2821dfb046d # see https://gist.github.com/coolaj86/f6f36efce2821dfb046d
openssl rsa \ openssl rsa \
-in certs/server/my-server.key.pem \ -in certs/server/privkey.pem \
-pubout -out certs/client/my-server.pub -pubout -out certs/client/pubkey.pem
# Put things in their proper place # Put things in their proper place
rsync -a certs/ca/my-root-ca.crt.pem certs/server/ rsync -a certs/ca/my-root-ca.crt.pem certs/server/chain.pem
rsync -a certs/ca/my-root-ca.crt.pem certs/client/ rsync -a certs/ca/my-root-ca.crt.pem certs/client/chain.pem