nextcloud/config/config.sample.php

40 lines
871 B
PHP
Raw Normal View History

2011-04-16 14:18:42 +04:00
<?php
define("DEBUG", true);
2011-04-16 14:18:42 +04:00
$CONFIG = array(
"installed" => false,
"dbtype" => "sqlite",
"dbname" => "owncloud",
"dbuser" => "",
"dbpassword" => "",
"dbhost" => "",
"dbtableprefix" => "",
"forcessl" => false,
"enablebackup" => false,
"theme" => "",
"3rdpartyroot" => "",
"3rdpartyurl" => "",
2012-05-11 15:56:52 +04:00
"defaultapp" => "files",
"knowledgebaseenabled" => true,
"knowledgebaseurl" => "",
"appstoreenabled" => true,
"appstoreurl" => "",
"mail_smtpmode" => "sendmail",
"mail_smtphost" => "127.0.0.1",
2012-05-31 23:28:58 +04:00
"mail_smtpauth" => false,
"mail_smtpname" => "",
"mail_smtppassword" => "",
"appcodechecker" => "",
2012-04-22 01:30:14 +04:00
"log_type" => "",
"logfile" => "",
"loglevel" => "",
/* Set this to false to disable the check for writable apps dir.
* If the apps dir is not writable, you can't download&install extra apps
* in the admin apps menu.
*/
"writable_appsdir" => true,
2011-04-16 14:18:42 +04:00
// "datadirectory" => ""
);
2010-03-29 18:21:00 +04:00
?>