Created
February 25, 2014 15:44
-
-
Save ami-GS/9211424 to your computer and use it in GitHub Desktop.
オレオレ証明書を作る
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
openssl genrsa 2048 > server.key | |
openssl req -new -key server.key > server.csr | |
openssl x509 -days 3650 -req -signkey server.key < server.csr > server.crt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment