2011-04-16 14:18:42 +04:00
|
|
|
<?php
|
|
|
|
|
2011-09-22 21:24:32 +04:00
|
|
|
define("DEBUG", true);
|
|
|
|
|
2011-04-16 14:18:42 +04:00
|
|
|
$CONFIG = array(
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Flag to indicate OwnCloud is successfully installed (true = installed) */
|
2011-04-16 14:18:42 +04:00
|
|
|
"installed" => false,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Type of database, can be sqlite, mysql or pgsql */
|
2011-04-16 14:18:42 +04:00
|
|
|
"dbtype" => "sqlite",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Name of the OwnCloud database */
|
2011-04-16 14:18:42 +04:00
|
|
|
"dbname" => "owncloud",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* User to access the OwnCloud database */
|
2011-04-16 14:18:42 +04:00
|
|
|
"dbuser" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Password to access the OwnCloud database */
|
2011-04-16 14:18:42 +04:00
|
|
|
"dbpassword" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Host running the OwnCloud database */
|
2011-04-16 14:18:42 +04:00
|
|
|
"dbhost" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Prefix for the OwnCloud tables in the database */
|
2011-04-16 14:18:42 +04:00
|
|
|
"dbtableprefix" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 14:31:37 +04:00
|
|
|
/* Define the salt used to hash the user passwords. All your user passwords are lost if you lose this string. */
|
|
|
|
"passwordsalt" => "",
|
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Force use of HTTPS connection (true = use HTTPS) */
|
2011-04-16 14:18:42 +04:00
|
|
|
"forcessl" => false,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Theme to use for OwnCloud */
|
2012-02-12 02:25:35 +04:00
|
|
|
"theme" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Path to the 3rdparty directory */
|
2012-02-23 18:37:38 +04:00
|
|
|
"3rdpartyroot" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* URL to the 3rdparty directory, as seen by the browser */
|
2012-02-23 18:37:38 +04:00
|
|
|
"3rdpartyurl" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Default app to load on login */
|
2012-05-11 15:56:52 +04:00
|
|
|
"defaultapp" => "files",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Enable the help menu item in the settings */
|
2012-03-23 18:52:41 +04:00
|
|
|
"knowledgebaseenabled" => true,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* URL to use for the help page, server should understand OCS */
|
|
|
|
"knowledgebaseurl" => "http://api.apps.owncloud.com/v1",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Enable installing apps from the appstore */
|
2012-03-23 18:52:41 +04:00
|
|
|
"appstoreenabled" => true,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* URL of the appstore to use, server should understand OCS */
|
|
|
|
"appstoreurl" => "http://api.apps.owncloud.com/v1",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Mode to use for sending mail, can be sendmail, smtp, qmail or php, see PHPMailer docs */
|
2012-04-20 22:49:35 +04:00
|
|
|
"mail_smtpmode" => "sendmail",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Host to use for sending mail, depends on mail_smtpmode if this is used */
|
2012-04-20 22:49:35 +04:00
|
|
|
"mail_smtphost" => "127.0.0.1",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* authentication needed to send mail, depends on mail_smtpmode if this is used
|
|
|
|
* (false = disable authentication)
|
|
|
|
*/
|
2012-05-31 23:28:58 +04:00
|
|
|
"mail_smtpauth" => false,
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Username to use for sendmail mail, depends on mail_smtpauth if this is used */
|
2012-04-20 22:49:35 +04:00
|
|
|
"mail_smtpname" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Password to use for sendmail mail, depends on mail_smtpauth if this is used */
|
2012-04-20 22:49:35 +04:00
|
|
|
"mail_smtppassword" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Check 3rdparty apps for malicious code fragments */
|
2012-04-22 00:47:56 +04:00
|
|
|
"appcodechecker" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-09 19:43:02 +04:00
|
|
|
/* Check if ownCloud is up to date */
|
|
|
|
"updatechecker" => true,
|
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */
|
|
|
|
"log_type" => "owncloud",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* File for the owncloud logger to log to, (default is ownloud.log in the data dir */
|
2012-04-22 01:30:14 +04:00
|
|
|
"logfile" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-08 00:47:18 +04:00
|
|
|
/* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */
|
2012-04-22 01:30:14 +04:00
|
|
|
"loglevel" => "",
|
2012-06-08 13:49:14 +04:00
|
|
|
|
2012-06-15 01:19:11 +04:00
|
|
|
/* 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.
|
2012-06-05 19:51:41 +04:00
|
|
|
*/
|
2012-06-08 00:56:21 +04:00
|
|
|
// "datadirectory" => "",
|
2012-06-15 01:19:11 +04:00
|
|
|
|
2012-06-08 00:56:21 +04:00
|
|
|
"apps_paths" => array(
|
|
|
|
|
|
|
|
/* Set an array of path for your apps directories
|
2012-06-15 01:00:02 +04:00
|
|
|
key 'path' is for the fs path an the key 'url' is for the http path to your
|
|
|
|
applications paths. 'writable' indicate if the user can install apps in this folder.
|
2012-06-22 02:00:48 +04:00
|
|
|
You must have at least 1 app folder writable or you must set the parameter : appstoreenabled to false
|
2012-06-08 00:56:21 +04:00
|
|
|
*/
|
2012-06-15 01:00:02 +04:00
|
|
|
array(
|
|
|
|
'path'=> '/var/www/owncloud/apps',
|
|
|
|
'url' => '/apps',
|
|
|
|
'writable' => true,
|
2012-06-08 00:56:21 +04:00
|
|
|
),
|
|
|
|
),
|
2011-04-16 14:18:42 +04:00
|
|
|
);
|
2012-06-15 01:19:11 +04:00
|
|
|
|