summaryrefslogtreecommitdiffstats
path: root/17.0-rc/fpm/config/apps.config.php
diff options
context:
space:
mode:
authortilosp-bot <git-bot@tilosp.de>2019-09-12 08:26:28 +0000
committertilosp-bot <git-bot@tilosp.de>2019-09-12 08:26:28 +0000
commitba4fc2dcbb50617656d5a167fb4c2a5d5bed8e19 (patch)
tree481f0b19304e352c52aa8b37ee67d2aca9a1b68d /17.0-rc/fpm/config/apps.config.php
parent73ff5c860d155d46ed65b6ae9caa9ee6e64478de (diff)
Signed-off-by: tilosp-bot <git-bot@tilosp.de>
Diffstat (limited to '17.0-rc/fpm/config/apps.config.php')
-rw-r--r--17.0-rc/fpm/config/apps.config.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/17.0-rc/fpm/config/apps.config.php b/17.0-rc/fpm/config/apps.config.php
new file mode 100644
index 00000000..a4bed833
--- /dev/null
+++ b/17.0-rc/fpm/config/apps.config.php
@@ -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,
+ ),
+ ),
+);