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 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',