diff options
author | Magnus Hagander <magnus@hagander.net> | 2016-11-27 17:10:02 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2016-11-27 17:11:12 +0100 |
commit | eb516e87ea2832e4501e9a95ac82d5bb2d6bbdd5 (patch) | |
tree | 3f6cbbab2bfe72ec1acfb8c3de0c8bda0291d794 | |
parent | 576bd360b2702e5418ee0c5cb11db4cc04ccec99 (diff) | |
download | postgresql-eb516e87ea2832e4501e9a95ac82d5bb2d6bbdd5.tar.gz postgresql-eb516e87ea2832e4501e9a95ac82d5bb2d6bbdd5.zip |
Mention server start requirement for ssl parameters
Fix that the documentation for three ssl related parameters did not
specify that they can only be changed at server start.
Michael Paquier
-rw-r--r-- | doc/src/sgml/config.sgml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index c8445c51997..09cbf013123 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1048,7 +1048,8 @@ include_dir 'conf.d' in the <application>OpenSSL</> package for the syntax of this setting and a list of supported values. The default value is <literal>HIGH:MEDIUM:+3DES:!aNULL</>. It is usually reasonable, - unless you have specific security requirements. + unless you have specific security requirements. This parameter can only + be set at server start. </para> <para> @@ -1120,7 +1121,8 @@ include_dir 'conf.d' <listitem> <para> Specifies whether to use the server's SSL cipher preferences, rather - than the client's. The default is true. + than the client's. The default is true. This parameter can only be + set at server start. </para> <para> @@ -1144,7 +1146,8 @@ include_dir 'conf.d' Specifies the name of the curve to use in <acronym>ECDH</> key exchange. It needs to be supported by all clients that connect. It does not need to be same curve as used by server's Elliptic - Curve key. The default is <literal>prime256v1</>. + Curve key. The default is <literal>prime256v1</>. This parameter + can only be set at server start. </para> <para> |