aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/owncloud/owncloud.config.php.in
diff options
context:
space:
mode:
Diffstat (limited to 'unmaintained/owncloud/owncloud.config.php.in')
-rw-r--r--unmaintained/owncloud/owncloud.config.php.in25
1 files changed, 25 insertions, 0 deletions
diff --git a/unmaintained/owncloud/owncloud.config.php.in b/unmaintained/owncloud/owncloud.config.php.in
new file mode 100644
index 0000000000..5fd814268c
--- /dev/null
+++ b/unmaintained/owncloud/owncloud.config.php.in
@@ -0,0 +1,25 @@
+<?php
+$CONFIG = array(
+ 'datadirectory' => '/var/lib/owncloud/data',
+ 'apps_path' => array (
+ 0 => array (
+ "path" => OC::$SERVERROOT."/apps",
+ "url" => "/apps",
+ "writable" => false,
+ ),
+ /* Uncomment this and install your apps here
+ 1 => array (
+ "path" => "/var/www/localhost/htdocs/myoc_apps",
+ "url" => "/myoc_apps",
+ "writable" = true,
+ ),
+ */
+ ),
+ 'version' => '__VERSION__',
+ 'dbname' => 'owncloud',
+ 'dbhost' => 'localhost',
+ 'dbuser' => 'owncloud',
+ 'installed' => false,
+ 'loglevel' => '0',
+);
+?>