1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Update and clarify ssl_ciphers default

- Write HIGH:MEDIUM instead of DEFAULT:!LOW:!EXP for clarity.
- Order 3DES last to work around inappropriate OpenSSL default.
- Remove !MD5 and @STRENGTH, because they are irrelevant.
- Add clarifying documentation.

Effectively, the new default is almost the same as the old one, but it
is arguably easier to understand and modify.

Author: Marko Kreen <markokr@gmail.com>
This commit is contained in:
Peter Eisentraut
2014-02-24 20:30:28 -05:00
parent 848ae330a4
commit 32001ab0b7
3 changed files with 64 additions and 5 deletions

View File

@ -3237,7 +3237,7 @@ static struct config_string ConfigureNamesString[] =
},
&SSLCipherSuites,
#ifdef USE_SSL
"DEFAULT:!LOW:!EXP:!MD5:@STRENGTH",
"HIGH:MEDIUM:+3DES:!aNULL",
#else
"none",
#endif