mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
c1555fc33e
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
20 lines
362 B
PHP
20 lines
362 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
$CONFIG = [
|
|
"apps_paths" => [
|
|
[
|
|
"path" => "/var/www/html/apps",
|
|
"url" => "/apps",
|
|
"writable" => false,
|
|
],
|
|
[
|
|
"path" => "/var/www/html/extra-apps",
|
|
"url" => "/extra-apps",
|
|
"writable" => true,
|
|
],
|
|
],
|
|
];
|