Correct "ownCloud"
This commit is contained in:
parent
a22a5d6807
commit
f271afa31c
|
@ -3,25 +3,25 @@
|
|||
define("DEBUG", true);
|
||||
|
||||
$CONFIG = array(
|
||||
/* Flag to indicate OwnCloud is successfully installed (true = installed) */
|
||||
/* Flag to indicate ownCloud is successfully installed (true = installed) */
|
||||
"installed" => false,
|
||||
|
||||
/* Type of database, can be sqlite, mysql or pgsql */
|
||||
"dbtype" => "sqlite",
|
||||
|
||||
/* Name of the OwnCloud database */
|
||||
/* Name of the ownCloud database */
|
||||
"dbname" => "owncloud",
|
||||
|
||||
/* User to access the OwnCloud database */
|
||||
/* User to access the ownCloud database */
|
||||
"dbuser" => "",
|
||||
|
||||
/* Password to access the OwnCloud database */
|
||||
/* Password to access the ownCloud database */
|
||||
"dbpassword" => "",
|
||||
|
||||
/* Host running the OwnCloud database */
|
||||
/* Host running the ownCloud database */
|
||||
"dbhost" => "",
|
||||
|
||||
/* Prefix for the OwnCloud tables in the database */
|
||||
/* Prefix for the ownCloud tables in the database */
|
||||
"dbtableprefix" => "",
|
||||
|
||||
/* Define the salt used to hash the user passwords. All your user passwords are lost if you lose this string. */
|
||||
|
@ -30,7 +30,7 @@ $CONFIG = array(
|
|||
/* Force use of HTTPS connection (true = use HTTPS) */
|
||||
"forcessl" => false,
|
||||
|
||||
/* Theme to use for OwnCloud */
|
||||
/* Theme to use for ownCloud */
|
||||
"theme" => "",
|
||||
|
||||
/* Path to the 3rdparty directory */
|
||||
|
@ -94,7 +94,7 @@ $CONFIG = array(
|
|||
"apps_paths" => array(
|
||||
|
||||
/* Set an array of path for your apps directories
|
||||
key 'path' is for the fs path an the key 'url' is for the http path to your
|
||||
key 'path' is for the fs path and the key 'url' is for the http path to your
|
||||
applications paths. 'writable' indicate if the user can install apps in this folder.
|
||||
You must have at least 1 app folder writable or you must set the parameter : appstoreenabled to false
|
||||
*/
|
||||
|
@ -104,5 +104,4 @@ $CONFIG = array(
|
|||
'writable' => true,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
);
|
Loading…
Reference in New Issue