Merge pull request #3807 from nextcloud/add/enc/mig

Add/enc/mig
This commit is contained in:
Roeland Jago Douma
2020-09-01 13:20:43 +02:00
committed by GitHub
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
====================
Encryption migration
====================
Encryption format
-----------------
Nextcloud still supports the legacy encryption scheme used for server side encryption.
However it is recommended to check if you have to still support this scheme.
Starting with version 20 for new installations the legacy encryption will be off by default.
However if you are upgrading there is a migration path to check if you can disable legacy encryption.
Checking for old files
^^^^^^^^^^^^^^^^^^^^^^
On the command line run:
occ encryption:scan:legacy-format
The command will tell you if you can remove the legacy encryption mode.
If so remove the `encryption.legacy_format_support` from your config.php or set it to `false`.

View File

@@ -15,6 +15,7 @@ File sharing and management
external_storage/auth_mechanisms
encryption_configuration
encryption_details
encryption_migration
files_locking_transactional
previews_configuration
file_versioning

1
go.php
View File

@@ -33,6 +33,7 @@ $mapping = array(
'admin-sharing' => '/admin_manual/configuration_files/file_sharing_configuration.html',
'admin-sharing-federated' => '/admin_manual/configuration_files/federated_cloud_sharing_configuration.html',
'admin-source_install' => '/admin_manual/installation/source_installation.html',
'admin-sse-legacy-format' => '/admin_manual/configuration_files/encryption_migration.html',
'admin-sso' => '/admin_manual/configuration_server/sso_configuration.html',
'admin-theming' => '/admin_manual/configuration_server/theming.html',
'admin-theming-icons' => '/admin_manual/configuration_server/theming.html#theming-of-icons',