0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-04-25 04:40:55 +02:00

split app folder

This commit is contained in:
Tilo Spannagel 2017-04-17 23:02:25 +02:00
parent ae5b15cca3
commit fc384e6a7e
No known key found for this signature in database
GPG key ID: B89F1626A58E1429
23 changed files with 130 additions and 42 deletions

View file

@ -0,0 +1,15 @@
<?php
$CONFIG = array (
"apps_paths" => array (
0 => array (
"path" => OC::$SERVERROOT."/apps",
"url" => "/apps",
"writable" => false,
),
1 => array (
"path" => OC::$SERVERROOT."/custom_apps",
"url" => "/custom_apps",
"writable" => true,
),
),
);