1
0

apps.config.php 362 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. $CONFIG = [
  7. "apps_paths" => [
  8. [
  9. "path" => "/var/www/html/apps",
  10. "url" => "/apps",
  11. "writable" => false,
  12. ],
  13. [
  14. "path" => "/var/www/html/extra-apps",
  15. "url" => "/extra-apps",
  16. "writable" => true,
  17. ],
  18. ],
  19. ];