From dca076e583db264acdc1060389e98922e2f2463c Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Thu, 16 Apr 2015 18:19:31 +0000 Subject: [PATCH] Applies fix recommended in bz56346 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1674126 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/ssl/ssl_faq.xml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/manual/ssl/ssl_faq.xml b/docs/manual/ssl/ssl_faq.xml index 99c6fb3fc2..4e9ccc195f 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:

  1. 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