summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2017-07-01 14:31:06 +0200
committerTilo Spannagel <development@tilosp.de>2017-07-01 14:39:23 +0200
commit40212aaa24b8cc9947aa8f20a20e90a59a012121 (patch)
tree03de0d4e23a2b72c19aa7e1b8249515871479e76 /.config
parentec85bdaf208fe3c6007cc098b93cfff3c30efa39 (diff)
Move apps.config.php into config dir
Diffstat (limited to '.config')
-rw-r--r--.config/apps.config.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/.config/apps.config.php b/.config/apps.config.php
new file mode 100644
index 00000000..a4bed833
--- /dev/null
+++ b/.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,
+ ),
+ ),
+);