summaryrefslogtreecommitdiffstats
path: root/config/config.sample.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.sample.php')
-rw-r--r--config/config.sample.php25
1 files changed, 14 insertions, 11 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index dc1a62f46e3..5575340bc1b 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -1,12 +1,15 @@
-<?php
-$CONFIG_ADMINLOGIN='admin-username';
-$CONFIG_ADMINPASSWORD='password';
-$CONFIG_DATADIRECTORY='write/absolute-drectory/path/here/';
-$CONFIG_HTTPFORCESSL=false;
-$CONFIG_DATEFORMAT='j M Y G:i';
-$CONFIG_DBHOST='localhost';
-$CONFIG_DBNAME='owncloud-db-name';
-$CONFIG_DBUSER='user-name';
-$CONFIG_DBPASSWORD='password';
-$CONFIG_DBTABLEPREFIX = 'oc_';
+<?php
+
+$CONFIG = array(
+"installed" => false,
+"dbtype" => "sqlite",
+"dbname" => "owncloud",
+"dbuser" => "",
+"dbpassword" => "",
+"dbhost" => "",
+"dbtableprefix" => "",
+"forcessl" => false,
+"enablebackup" => false,
+// "datadirectory" => ""
+);
?>