Last active
August 26, 2015 08:28
-
-
Save maximkott/45af53b0e7dcd122acc3 to your computer and use it in GitHub Desktop.
Create an ssh certificate
This file contains hidden or 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
sudo openssl genrsa -out example.key 2048 | |
sudo openssl req -new -key example.key -out example.csr | |
# or | |
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout example.key -out example.crt | |
# https://www.digitalocean.com/community/tutorials/how-to-create-an-ssl-certificate-on-nginx-for-ubuntu-14-04 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment