From 901186a60b648a3beb9e33c1b71d3e058ed61d84 Mon Sep 17 00:00:00 2001 From: NeroBurner Date: Thu, 10 Oct 2019 15:23:39 +0200 Subject: [PATCH] README: migration: mention custom_apps config Signed-off-by: NeroBurner --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4bc8954d..8721eb66 100644 --- a/README.md +++ b/README.md @@ -378,7 +378,22 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som - "writable" => true, - ), ``` - 3. Make sure your data directory is set to /var/www/html/data + 3. Make sure to have the `apps` directory non writable and the `custom_apps` directory writable + ```php + 'apps_paths' => array ( + 0 => array ( + 'path' => '/var/www/html/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => array ( + 'path' => '/var/www/html/custom_apps', + 'url' => '/custom_apps', + 'writable' => true, + ), + ), + ``` + 4. Make sure your data directory is set to /var/www/html/data ```php 'datadirectory' => '/var/www/html/data', ```