Last active
September 15, 2018 00:29
-
-
Save ncole458/0979d0283d735a44ace25def3611c395 to your computer and use it in GitHub Desktop.
TLS/SSL Certificate Generation & Installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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