OpenSSL: Difference between revisions
Jump to navigation
Jump to search
Anthoanthop (talk | contribs) (Created page with "== Global == * Generate a self-signer certificate without passphrase in one line: <syntaxhighlight lang="bash"> openssl req -nodes -new -x509 -keyout server.key -out server.c...") |
Anthoanthop (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
== Global == | == Global == | ||
== Generate a self-signed certificate without passphrase in one line == | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
openssl req -nodes -new -x509 -keyout server.key -out server.cert -days 3650 | openssl req -nodes -new -x509 -keyout server.key -out server.cert -days 3650 | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 12:03, 26 April 2016
Global
Generate a self-signed certificate without passphrase in one line
openssl req -nodes -new -x509 -keyout server.key -out server.cert -days 3650