summaryrefslogtreecommitdiffstats
path: root/nextcloud-config.php
diff options
context:
space:
mode:
authorJames Hogarth <james.hogarth@gmail.com>2017-02-21 14:30:00 +0000
committerJames Hogarth <james.hogarth@gmail.com>2017-02-21 14:30:00 +0000
commit260614d225ad68cf4bb1bc31c2480b2ccd169d56 (patch)
tree50e35459d24d7c7972e5491dd03a19bd3197ce21 /nextcloud-config.php
parent3545d203eaf0f4c0bff942e50004f8785f1cd7b3 (diff)
import of srpm from review
Diffstat (limited to 'nextcloud-config.php')
-rw-r--r--nextcloud-config.php26
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,
+ ),
+ ),
+);