Skip to content

Instantly share code, notes, and snippets.

@ncole458
Last active September 15, 2018 00:29
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 ncole458/0979d0283d735a44ace25def3611c395 to your computer and use it in GitHub Desktop.
Save ncole458/0979d0283d735a44ace25def3611c395 to your computer and use it in GitHub Desktop.
TLS/SSL Certificate Generation & Installation
# create the cert key request
openssl req -newkey rsa:2048 -nodes -keyout domain.com.key -out domain.com.csr
# concat the bundle and certs
cat domain_com.crt domain_com.ca-bundle > website-bundle.crt
# SSL checker for after install
https://www.sslshopper.com/ssl-checker.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment