diff options
author | Remi Collet <fedora@famillecollet.com> | 2015-07-05 07:54:26 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2015-07-05 07:54:26 +0200 |
commit | 7840065569de84a135711318d66e5bcf8827097e (patch) | |
tree | 97e0473a782c76e119c967235b1308fa115acc1d /owncloud-config.php |
owncloud: import 8.0.4 from rawhide
Diffstat (limited to 'owncloud-config.php')
-rw-r--r-- | owncloud-config.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/owncloud-config.php b/owncloud-config.php new file mode 100644 index 0000000..1140054 --- /dev/null +++ b/owncloud-config.php @@ -0,0 +1,24 @@ +<?php +$CONFIG = array ( + "log_type" => "syslog", + "datadirectory" => "/var/lib/owncloud/data", + "updatechecker" => false, + "check_for_working_htaccess" => false, + "asset-pipeline.enabled" => false, + "assetdirectory" => '/var/lib/owncloud', + + "apps_paths" => array( + 0 => + array ( + 'path'=> '/usr/share/owncloud/apps', + 'url' => '/apps', + 'writable' => false, + ), + 1 => + array ( + 'path' => '/var/lib/owncloud/apps', + 'url' => '/apps-appstore', + 'writable' => true, + ), + ), +); |