summaryrefslogtreecommitdiffstats
path: root/18.0-rc/fpm/config/apps.config.php
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2020-08-21 17:38:03 +0200
committerGitHub <noreply@github.com>2020-08-21 17:38:03 +0200
commit65f3f6d167defbef27d01819da34314e0569040d (patch)
treed98b370029e81cc372069b0317fae5b54b3638c8 /18.0-rc/fpm/config/apps.config.php
parentabe8cd69a6a3eee4952d4faea9dfbda64c4cdb2b (diff)
parent4afc60d530c971b50e9eccfccf9e41044423538c (diff)
Merge pull request #1205 from tilosp/bot/update
Run update.sh
Diffstat (limited to '18.0-rc/fpm/config/apps.config.php')
-rw-r--r--18.0-rc/fpm/config/apps.config.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/18.0-rc/fpm/config/apps.config.php b/18.0-rc/fpm/config/apps.config.php
new file mode 100644
index 00000000..a4bed833
--- /dev/null
+++ b/18.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,
+ ),
+ ),
+);