mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 03:50:37 -05:00
Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
16 lines
234 B
PHP
16 lines
234 B
PHP
<?php
|
|
|
|
$CONFIG = [
|
|
"apps_paths" => [
|
|
[
|
|
"path" => "/var/www/html/apps",
|
|
"url" => "/apps",
|
|
"writable" => false,
|
|
],
|
|
[
|
|
"path" => "/var/www/html/extra-apps",
|
|
"url" => "/extra-apps",
|
|
"writable" => true,
|
|
],
|
|
],
|
|
];
|