From: Rich Bowen
Date: Thu, 16 Apr 2015 18:19:31 +0000 (+0000)
Subject: Applies fix recommended in bz56346
X-Git-Tag: 2.5.0-alpha~3267
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dca076e583db264acdc1060389e98922e2f2463c;p=thirdparty%2Fapache%2Fhttpd.git
Applies fix recommended in bz56346
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1674126 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/ssl/ssl_faq.xml b/docs/manual/ssl/ssl_faq.xml
index 99c6fb3fc2e..4e9ccc195fa 100644
--- a/docs/manual/ssl/ssl_faq.xml
+++ b/docs/manual/ssl/ssl_faq.xml
@@ -347,7 +347,7 @@ SSLCertificateKeyFile /path/to/this/server.key
The short answer is to use the CA.sh or CA.pl
script provided by OpenSSL. Unless you have a good reason not to,
you should use these for preference. If you cannot, you can create a
- self-signed Certificate as follows:
+ self-signed certificate as follows:
- Create a RSA private key for your server
@@ -372,7 +372,7 @@ SSLCertificateKeyFile /path/to/this/server.key
with the RSA key you just created (output will be PEM formatted):
$ openssl req -new -x509 -nodes -sha1 -days 365
- -key server.key -out server.crt
+ -key server.key -out server.crt -extensions usr_cert
This signs the server CSR and results in a server.crt file.
You can see the details of this Certificate using:
@@ -385,8 +385,7 @@ SSLCertificateKeyFile /path/to/this/server.key
How can I change the pass-phrase on my private key file?
You simply have to read it with the old pass-phrase and write it again,
- specifying the new pass-phrase. You can accomplish this with the following
- commands:
+ specifying the new pass-phrase. You can accomplish this with the following commands:
$ openssl rsa -des3 -in server.key -out server.key.new