Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-09-23 21:23:37 +0400
committerLukas Reschke <lukas@statuscode.ch>2012-09-23 21:23:37 +0400
commitf271afa31cf2f75496e355a37fa74db63b1f7dcc (patch)
tree05d0f0042a8f222fb7d9ce53148fd4b8c0a05520 /config
parenta22a5d6807ca3f98dbfea66e1b1ec0e133e79740 (diff)
Correct "ownCloud"
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php19
1 files changed, 9 insertions, 10 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index c4cb719796b..09eb6053c24 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -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,
),
),
-);
-
+); \ No newline at end of file