diff options
author | Andrew Dunstan | 2017-04-18 12:50:15 +0000 |
---|---|---|
committer | Andrew Dunstan | 2017-04-18 12:50:15 +0000 |
commit | 2b67c9d207d428c2476af0dd39043d83469d70c2 (patch) | |
tree | 95367e23dc1d781c8520727fed7c71a01f27474b | |
parent | c727f120ff50f624a1ee3abe700d995c18314a0b (diff) |
Simplify docs on creating a self-signed SSL certificate
Discussion: <https://postgr.es/m/[email protected]>
-rw-r--r-- | doc/src/sgml/runtime.sgml | 26 |
1 files changed, 6 insertions, 20 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 01153f9a37..6865b73011 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -2389,28 +2389,14 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433 <title>Creating a Self-signed Certificate</title> <para> - To create a quick self-signed certificate for the server, use the - following <productname>OpenSSL</productname> command: + To create a quick self-signed certificate for the server, valid for 365 + days, use the following <productname>OpenSSL</productname> command, using + the local host name in the subject argument: <programlisting> -openssl req -new -text -out server.req +openssl req -new -x509 -days 365 -nodes -text -out server.crt \ + -keyout server.key -subj "/CN=yourdomain.com" </programlisting> - Fill out the information that <application>openssl</> asks for. Make sure - you enter the local host name as <quote>Common Name</>; the challenge - password can be left blank. The program will generate a key that is - passphrase protected; it will not accept a passphrase that is less - than four characters long. To remove the passphrase again (as you must - if you want automatic start-up of the server), next run the commands: -<programlisting> -openssl rsa -in privkey.pem -out server.key -rm privkey.pem -</programlisting> - Enter the old passphrase to unlock the existing key. Now do: -<programlisting> -openssl req -x509 -in server.req -text -key server.key -out server.crt -</programlisting> - to turn the certificate into a self-signed certificate and to copy - the key and certificate to where the server will look for them. - Finally do: + Then do: <programlisting> chmod og-rwx server.key </programlisting> |