diff options
Diffstat (limited to 'nextcloud-config.php')
| -rw-r--r-- | nextcloud-config.php | 26 | 
1 files changed, 26 insertions, 0 deletions
diff --git a/nextcloud-config.php b/nextcloud-config.php new file mode 100644 index 0000000..96aa36e --- /dev/null +++ b/nextcloud-config.php @@ -0,0 +1,26 @@ +<?php +$CONFIG = array ( +    "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" => array( +        0 => +        array ( +            'path'=> '/usr/share/nextcloud/apps', +            'url' => '/apps', +            'writable' => false, +        ), +        1 => +        array ( +            'path' => '/var/lib/nextcloud/apps', +            'url' => '/apps-appstore', +            'writable' => true, +        ), +    ), +);  | 
