freebsd-ports/www/nextcloud/files/config.sample.php.in
Bernard Spil 89ca8a0a62 www/nextcloud: Update to 14.0.3
- Add more guidance for users
 - Add config for options to sample
2018-10-15 13:17:24 +00:00

34 lines
789 B
PHP

<?php
/** This is the bare minimum configuration for the bundled installer
* to function properly.
*/
$CONFIG = array (
/** The FreeBSD package separates apps into bundled apps and user-
* installed apps. If this 'apps_paths' array is missing from
* your config, your Nextcloud installation is broken
*/
'apps_paths' =>
array (
0 =>
array (
'path' => '%%WWWDIR%%/apps',
'url' => '/apps',
'writable' => true,
),
1 =>
array (
'path' => '%%WWWDIR%%/apps-pkg',
'url' => '/apps-pkg',
'writable' => false,
),
),
// Log-files belong in the appropriate location
'logfile' => '/var/log/nextcloud/nextcloud.log',
// Enable user caching when option is enabled
%%APCU%% 'memcache.local' => '\OC\Memcache\APCu',
);