Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-04-16 14:18:42 +0400
committerJakob Sack <kde@jakobsack.de>2011-04-16 14:18:42 +0400
commit8465f76e7e1aa5512d62905cc60a10f0fe3f0e02 (patch)
treef1eeb87ca8d680f285eb2065eb17da12e3745a20 /config
parent77fe7240f08a8461a5e8910bd3f732508b0f91e7 (diff)
Use OC_CONFIG where possible
Diffstat (limited to 'config')
-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" => ""
+);
?>