From e6a1843efb5a3b756c75814c9040ad359bc34431 Mon Sep 17 00:00:00 2001 From: Simey Lameze Date: Tue, 11 Apr 2017 16:06:05 +0800 Subject: [PATCH] MDL-58551 config: add alternative_file_system_class description --- config-dist.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/config-dist.php b/config-dist.php index a6882a05a23..48d89d76a0a 100644 --- a/config-dist.php +++ b/config-dist.php @@ -853,7 +853,19 @@ $CFG->admin = 'admin'; // Unoconv is used convert between file formats supported by LibreOffice. // Use a recent version of unoconv ( >= 0.7 ), older versions have trouble running from a webserver. // $CFG->pathtounoconv = ''; - +// +//========================================================================= +// 14. ALTERNATIVE FILE SYSTEM SETTINGS +//========================================================================= +// +// Alternative file system. +// Since 3.3 it is possible to override file_storage and file_system API and use alternative storage systems (e.g. S3, +// Rackspace Cloud Files, Google Cloud Storage, Azure Storage, etc.). +// To set the alternative file storage system in config.php you can use the following setting, providing the +// alternative system class name that will be auto-loaded by file_storage API. +// +// $CFG->alternative_file_system_class = '\\local_myfilestorage\\file_system'; +// //========================================================================= // ALL DONE! To continue installation, visit your main page with a browser //=========================================================================