Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Warmuz <jakub@warmuz.org>2015-06-26 15:16:25 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-06-26 16:26:09 +0300
commitabbd2483a5f6254725a003f791e824ca16b483ba (patch)
tree91f32d697b28da133bbdeccfe4bdb54d8bb2b635 /examples
parentb1b3befd045850e2aaccd9f183a457a1bcf4d4b5 (diff)
install --key-path (fixes #550)
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/generate-csr.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/generate-csr.sh b/examples/generate-csr.sh
index 617319c3d..fa9327095 100755
--- a/examples/generate-csr.sh
+++ b/examples/generate-csr.sh
@@ -20,7 +20,7 @@ done
SAN="$domains" openssl req -config "${OPENSSL_CNF:-openssl.cnf}" \
-new -nodes -subj '/' -reqexts san \
-out "${CSR_PATH:-csr.der}" \
- -keyout key.pem \
+ -keyout "${KEY_PATH:-key.pem}" \
-newkey rsa:2048 \
-outform DER
# 512 or 1024 too low for Boulder, 2048 is smallest for tests