Created
October 14, 2009 22:08
-
-
Save drewr/210449 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
#!/bin/sh | |
openssl genrsa -out server.key 1024 | |
openssl req -new -key server.key -out server.csr | |
openssl x509 -req -days 1095 -in server.csr -signkey server.key -out server.crt # self-sign |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment