summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Roesler <diafygi@gmail.com>2015-06-10 18:12:24 -0700
committerDaniel Roesler <diafygi@gmail.com>2015-06-10 18:12:24 -0700
commitf496e5d45ff9e953d0b1421611b4864e40e2530f (patch)
tree01ed081bf5a9bf1e49db7a8b419e07d62bee95f2 /README.md
parent9607deb7b259499725ce1c705a1664199f51881d (diff)
updated to new registration flow for ACME
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7152cae..19f9d44 100644
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@ Prerequisites:
Example: Generate a key, create a csr, and have it signed.
--------------
$ openssl genrsa -out priv.key 4096
-$ openssl req -new -sha256 -key priv.key -out cert.csr
+$ openssl req -new -subj "/CN=example.com" -key priv.key -out cert.csr
$ python sign_csr.py cert.csr > signed.crt
--------------