add spacing lines to our awesome new sample config file. readability++

This commit is contained in:
Frank Karlitschek 2012-06-08 11:49:14 +02:00
parent 4768510923
commit f568b7ccb4
1 changed files with 26 additions and 0 deletions

View File

@ -5,61 +5,87 @@ define("DEBUG", true);
$CONFIG = array( $CONFIG = array(
/* Flag to indicate OwnCloud is successfully installed (true = installed) */ /* Flag to indicate OwnCloud is successfully installed (true = installed) */
"installed" => false, "installed" => false,
/* Type of database, can be sqlite, mysql or pgsql */ /* Type of database, can be sqlite, mysql or pgsql */
"dbtype" => "sqlite", "dbtype" => "sqlite",
/* Name of the OwnCloud database */ /* Name of the OwnCloud database */
"dbname" => "owncloud", "dbname" => "owncloud",
/* User to access the OwnCloud database */ /* User to access the OwnCloud database */
"dbuser" => "", "dbuser" => "",
/* Password to access the OwnCloud database */ /* Password to access the OwnCloud database */
"dbpassword" => "", "dbpassword" => "",
/* Host running the OwnCloud database */ /* Host running the OwnCloud database */
"dbhost" => "", "dbhost" => "",
/* Prefix for the OwnCloud tables in the database */ /* Prefix for the OwnCloud tables in the database */
"dbtableprefix" => "", "dbtableprefix" => "",
/* Force use of HTTPS connection (true = use HTTPS) */ /* Force use of HTTPS connection (true = use HTTPS) */
"forcessl" => false, "forcessl" => false,
/* Theme to use for OwnCloud */ /* Theme to use for OwnCloud */
"theme" => "", "theme" => "",
/* Path to the 3rdparty directory */ /* Path to the 3rdparty directory */
"3rdpartyroot" => "", "3rdpartyroot" => "",
/* URL to the 3rdparty directory, as seen by the browser */ /* URL to the 3rdparty directory, as seen by the browser */
"3rdpartyurl" => "", "3rdpartyurl" => "",
/* Default app to load on login */ /* Default app to load on login */
"defaultapp" => "files", "defaultapp" => "files",
/* Enable the help menu item in the settings */ /* Enable the help menu item in the settings */
"knowledgebaseenabled" => true, "knowledgebaseenabled" => true,
/* URL to use for the help page, server should understand OCS */ /* URL to use for the help page, server should understand OCS */
"knowledgebaseurl" => "http://api.apps.owncloud.com/v1", "knowledgebaseurl" => "http://api.apps.owncloud.com/v1",
/* Enable installing apps from the appstore */ /* Enable installing apps from the appstore */
"appstoreenabled" => true, "appstoreenabled" => true,
/* URL of the appstore to use, server should understand OCS */ /* URL of the appstore to use, server should understand OCS */
"appstoreurl" => "http://api.apps.owncloud.com/v1", "appstoreurl" => "http://api.apps.owncloud.com/v1",
/* Mode to use for sending mail, can be sendmail, smtp, qmail or php, see PHPMailer docs */ /* Mode to use for sending mail, can be sendmail, smtp, qmail or php, see PHPMailer docs */
"mail_smtpmode" => "sendmail", "mail_smtpmode" => "sendmail",
/* Host to use for sending mail, depends on mail_smtpmode if this is used */ /* Host to use for sending mail, depends on mail_smtpmode if this is used */
"mail_smtphost" => "127.0.0.1", "mail_smtphost" => "127.0.0.1",
/* authentication needed to send mail, depends on mail_smtpmode if this is used /* authentication needed to send mail, depends on mail_smtpmode if this is used
* (false = disable authentication) * (false = disable authentication)
*/ */
"mail_smtpauth" => false, "mail_smtpauth" => false,
/* Username to use for sendmail mail, depends on mail_smtpauth if this is used */ /* Username to use for sendmail mail, depends on mail_smtpauth if this is used */
"mail_smtpname" => "", "mail_smtpname" => "",
/* Password to use for sendmail mail, depends on mail_smtpauth if this is used */ /* Password to use for sendmail mail, depends on mail_smtpauth if this is used */
"mail_smtppassword" => "", "mail_smtppassword" => "",
/* Check 3rdparty apps for malicious code fragments */ /* Check 3rdparty apps for malicious code fragments */
"appcodechecker" => "", "appcodechecker" => "",
/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ /* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */
"log_type" => "owncloud", "log_type" => "owncloud",
/* File for the owncloud logger to log to, (default is ownloud.log in the data dir */ /* File for the owncloud logger to log to, (default is ownloud.log in the data dir */
"logfile" => "", "logfile" => "",
/* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */ /* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */
"loglevel" => "", "loglevel" => "",
/* Set this to false to disable the check for writable apps dir. /* 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 * If the apps dir is not writable, you can't download&install extra apps
* in the admin apps menu. * in the admin apps menu.
*/ */
"writable_appsdir" => true, "writable_appsdir" => true,
/* The directory where the user data is stored, default to data in the owncloud /* The directory where the user data is stored, default to data in the owncloud
* directory. The sqlite database is also stored here, when sqlite is used. * directory. The sqlite database is also stored here, when sqlite is used.
*/ */