From: Tom Lane Date: Tue, 18 Apr 2017 18:21:57 +0000 (-0400) Subject: Doc: improve markup in self-signed certificate example. X-Git-Tag: REL_10_BETA1~223 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=539f67012ec978e931054e413a4ab3c4c68bb737;p=postgresql.git Doc: improve markup in self-signed certificate example. --- 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 To create a quick self-signed certificate for the server, valid for 365 - days, use the following OpenSSL command, using - the local host name in the subject argument: + days, use the following OpenSSL command, + replacing yourdomain.com with the server's host name: openssl req -new -x509 -days 365 -nodes -text -out server.crt \ - -keyout server.key -subj "/CN=yourdomain.com" + -keyout server.key -subj "/CN=yourdomain.com" Then do: