diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-04-18 14:21:57 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-04-18 14:21:57 -0400 |
commit | 539f67012ec978e931054e413a4ab3c4c68bb737 (patch) | |
tree | c9e340b8477d8e6a68b9016e917bbc357947b78d | |
parent | a790ed9f69ef584c12aec68d0d80e6b6b543bacb (diff) | |
download | postgresql-539f67012ec978e931054e413a4ab3c4c68bb737.tar.gz postgresql-539f67012ec978e931054e413a4ab3c4c68bb737.zip |
Doc: improve markup in self-signed certificate example.
-rw-r--r-- | doc/src/sgml/runtime.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 6865b730118..6d57525515e 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -2390,11 +2390,11 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433 <para> 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: + days, use the following <productname>OpenSSL</productname> command, + replacing <replaceable>yourdomain.com</> with the server's host name: <programlisting> openssl req -new -x509 -days 365 -nodes -text -out server.crt \ - -keyout server.key -subj "/CN=yourdomain.com" + -keyout server.key -subj "/CN=<replaceable>yourdomain.com</>" </programlisting> Then do: <programlisting> |