Skip to content

Instantly share code, notes, and snippets.

@ami-GS
Created February 25, 2014 15:44
Show Gist options
  • Save ami-GS/9211424 to your computer and use it in GitHub Desktop.
Save ami-GS/9211424 to your computer and use it in GitHub Desktop.
オレオレ証明書を作る
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