diff options
author | Jakob Sack <kde@jakobsack.de> | 2011-04-16 12:18:42 +0200 |
---|---|---|
committer | Jakob Sack <kde@jakobsack.de> | 2011-04-16 12:18:42 +0200 |
commit | 8465f76e7e1aa5512d62905cc60a10f0fe3f0e02 (patch) | |
tree | f1eeb87ca8d680f285eb2065eb17da12e3745a20 /config/config.sample.php | |
parent | 77fe7240f08a8461a5e8910bd3f732508b0f91e7 (diff) | |
download | nextcloud-server-8465f76e7e1aa5512d62905cc60a10f0fe3f0e02.tar.gz nextcloud-server-8465f76e7e1aa5512d62905cc60a10f0fe3f0e02.zip |
Use OC_CONFIG where possible
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 25 |
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" => "" +); ?> |