apps.config.php 377 B

123456789101112131415
  1. <?php
  2. $CONFIG = array (
  3. "apps_paths" => array (
  4. 0 => array (
  5. "path" => OC::$SERVERROOT."/apps",
  6. "url" => "/apps",
  7. "writable" => false,
  8. ),
  9. 1 => array (
  10. "path" => OC::$SERVERROOT."/custom_apps",
  11. "url" => "/custom_apps",
  12. "writable" => true,
  13. ),
  14. ),
  15. );