You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

preseed-config.php 470B

123456789101112131415161718192021222324
  1. <?php
  2. $CONFIG = array (
  3. "appstoreenabled" => false,
  4. 'apps_paths' =>
  5. array (
  6. 0 =>
  7. array (
  8. 'path' => OC::$SERVERROOT.'/apps',
  9. 'url' => '/apps',
  10. 'writable' => false,
  11. ),
  12. 1 =>
  13. array (
  14. 'path' => OC::$SERVERROOT.'/apps2',
  15. 'url' => '/apps2',
  16. 'writable' => false,
  17. )
  18. ),
  19. );
  20. if(substr(strtolower(PHP_OS), 0, 3) == "win") {
  21. $CONFIG['openssl'] = array( 'config' => OC::$SERVERROOT.'/tests/data/openssl.cnf');
  22. }