summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Roesler <diafygi@gmail.com>2015-06-10 18:17:29 -0700
committerDaniel Roesler <diafygi@gmail.com>2015-06-10 18:17:29 -0700
commit89c2ce1fb90882634815ee6c840bd1804e19e36c (patch)
treecc31dc481ac61169f3755efc145fc5fc15cca750 /README.md
parentf496e5d45ff9e953d0b1421611b4864e40e2530f (diff)
added error catching for non-issued cert
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 19f9d44..46bf376 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 -subj "/CN=example.com" -key priv.key -out cert.csr
+$ openssl req -new -subj "/CN=test4.byofs.com" -key priv.key -out cert.csr
$ python sign_csr.py cert.csr > signed.crt
--------------