0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-14 18:35:08 +01:00

README: migration: mention custom_apps config

Signed-off-by: NeroBurner <pyro4hell@gmail.com>
This commit is contained in:
NeroBurner 2019-10-10 15:23:39 +02:00
parent 76da6bc25d
commit 901186a60b

View file

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