diff options
author | J0WI <J0WI@users.noreply.github.com> | 2021-03-26 19:38:38 +0100 |
---|---|---|
committer | J0WI <J0WI@users.noreply.github.com> | 2021-03-26 19:39:08 +0100 |
commit | fdd1ff2686f96f7e49a8e7546729a67a3402963d (patch) | |
tree | d5a0cfbb7116f9a4aa94f9ced65c3c4913ed68ec /config | |
parent | a75f0e62fa0b9e140ba0dd8ffb2e928a5d3007dd (diff) | |
download | nextcloud-server-fdd1ff2686f96f7e49a8e7546729a67a3402963d.tar.gz nextcloud-server-fdd1ff2686f96f7e49a8e7546729a67a3402963d.zip |
Update cipher defaults
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 29fe3629806..e352c86b262 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1627,10 +1627,15 @@ $CONFIG = [ 'theme' => '', /** - * The default cipher for encrypting files. Currently AES-128-CFB and - * AES-256-CFB are supported. + * The default cipher for encrypting files. Currently supported are: + * - AES-256-CTR + * - AES-128-CTR + * - AES-256-CFB + * - AES-128-CFB + * + * Defaults to ``AES-256-CTR`` */ -'cipher' => 'AES-256-CFB', +'cipher' => 'AES-256-CTR', /** * The minimum Nextcloud desktop client version that will be allowed to sync with |