nextcloud-rpm/nextcloud-config.php
Iván Chavero d4d3a91719 Update for 27.0.2
- Update configuration file
- Fix missing CAN_INSTALL file for new installations
- Fix upgrade patch
2023-09-11 19:43:49 -06:00

24 lines
611 B
PHP

<?php
$CONFIG = [
"log_type" => "syslog",
"datadirectory" => "/var/lib/nextcloud/data",
"updatechecker" => false,
"check_for_working_htaccess" => false,
"asset-pipeline.enabled" => false,
"assetdirectory" => '/var/lib/nextcloud',
"preview_libreoffice_path" => '/usr/bin/libreoffice',
"apps_paths" => [
[ 'path'=> '/usr/share/nextcloud/apps',
'url' => '/apps',
'writable' => false,
],
[
'path' => '/var/lib/nextcloud/apps',
'url' => '/apps-appstore',
'writable' => true,
],
],
];