diff --git a/admin_manual/configuration/server_side_encryption_configuration.rst b/admin_manual/configuration/encryption_configuration.rst similarity index 93% rename from admin_manual/configuration/server_side_encryption_configuration.rst rename to admin_manual/configuration/encryption_configuration.rst index b92c35b38..bff1ad345 100644 --- a/admin_manual/configuration/server_side_encryption_configuration.rst +++ b/admin_manual/configuration/encryption_configuration.rst @@ -1,5 +1,5 @@ -Server-Side Encryption Configuration -==================================== +Encryption Configuration +======================== ownCloud includes a server-side encryption application. The Encryption app encrypts all files stored on the ownCloud server, and all files on remote @@ -164,3 +164,20 @@ to match on their next ownCloud login. The user will need both their old and new to do this. If you have enabled the Recovery Key then you can change a user's password in the ownCloud Users panel to match their back-end password, and then, of course, notify the user and give them their new password. + +Encryption on Windows Servers +----------------------------- + +If you get a "Missing requirements" error message when you enable encryption on a Windows server, +enter the absolute location of your openSSL configuration file in ``config.php``:: + + 'openssl' => array( + 'config' => '/absolute/location/of/openssl.cnf', + ), + +For example, in a typical installation it looks like this:: + + 'openssl' => array( + 'config' => '/Program Files (x86)\GnuWin32\share\openssl.cnf', + ), + diff --git a/admin_manual/configuration/index.rst b/admin_manual/configuration/index.rst index c4915c06c..9523e1356 100644 --- a/admin_manual/configuration/index.rst +++ b/admin_manual/configuration/index.rst @@ -14,6 +14,7 @@ Configuration custom_client_configuration database_configuration email_configuration + encryption_configuration external_storage_configuration_gui external_storage_configuration file_sharing_configuration @@ -25,7 +26,6 @@ Configuration previews_configuration reverse_proxy_configuration search_configuration - server_side_encryption_configuration server_to_server_configuration serving_static_files_configuration thirdparty_php_configuration