From fa9d22b0308153fda0c68a7d87e6f97e51ae4b89 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Tue, 1 Sep 2020 12:54:40 +0200 Subject: [PATCH 1/2] Add encryption migration docs Signed-off-by: Roeland Jago Douma --- .../encryption_migration.rst | 24 +++++++++++++++++++ admin_manual/configuration_files/index.rst | 1 + 2 files changed, 25 insertions(+) create mode 100644 admin_manual/configuration_files/encryption_migration.rst diff --git a/admin_manual/configuration_files/encryption_migration.rst b/admin_manual/configuration_files/encryption_migration.rst new file mode 100644 index 000000000..2b0ea4c4c --- /dev/null +++ b/admin_manual/configuration_files/encryption_migration.rst @@ -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`. + + diff --git a/admin_manual/configuration_files/index.rst b/admin_manual/configuration_files/index.rst index 947850e31..ca041fd4a 100644 --- a/admin_manual/configuration_files/index.rst +++ b/admin_manual/configuration_files/index.rst @@ -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 From b57e8396e3280cfa3b0968c9318be12949e95fd9 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Tue, 1 Sep 2020 12:56:29 +0200 Subject: [PATCH 2/2] Update go.php Signed-off-by: Roeland Jago Douma --- go.php | 1 + 1 file changed, 1 insertion(+) diff --git a/go.php b/go.php index 4ecb65469..b9f554daf 100644 --- a/go.php +++ b/go.php @@ -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',