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:
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php65
1 files changed, 42 insertions, 23 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 534d03a8af6..432569f12a9 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -417,19 +417,21 @@ $CONFIG = array(
*
* Available values:
*
- * * ``auto`` default setting. keeps files and folders in the trash bin
- * for 30 days and automatically deletes anytime after that
- * if space is needed (note: files may not be deleted if space
- * is not needed).
- * * ``D, auto`` keeps files and folders in the trash bin for D+ days,
- * delete anytime if space needed (note: files may not be deleted
- * if space is not needed)
- * * ``auto, D`` delete all files in the trash bin that are older than D days
- * automatically, delete other files anytime if space needed
- * * ``D1, D2`` keep files and folders the in trash bin for at least D1 days
- * and delete when exceeds D2 days
- * * ``disabled`` trash bin auto clean disabled, files and folders will be
- * kept forever
+ * * ``auto``
+ * default setting. keeps files and folders in the trash bin for 30 days
+ * and automatically deletes anytime after that if space is needed (note:
+ * files may not be deleted if space is not needed).
+ * * ``D, auto``
+ * keeps files and folders in the trash bin for D+ days, delete anytime if
+ * space needed (note: files may not be deleted if space is not needed)
+ * * ``auto, D``
+ * delete all files in the trash bin that are older than D days
+ * automatically, delete other files anytime if space needed
+ * * ``D1, D2``
+ * keep files and folders the in trash bin for at least D1 days and
+ * delete when exceeds D2 days
+ * * ``disabled``
+ * trash bin auto clean disabled, files and folders will be kept forever
*/
'trashbin_retention_obligation' => 'auto',
@@ -448,19 +450,24 @@ $CONFIG = array(
* ownCloud 8.1 and before.
*
* Available values:
- * ``auto`` default setting. Automatically expire versions according to
- * expire rules. Please refer to Files_versions online documentation
- * for more info.
- * ``D, auto`` keep versions at least for D days, apply expire rules to all
- * versions that are older than D days
- * * ``auto, D`` delete all versions that are older than D days automatically,
- * delete other versions according to expire rules
- * * ``D1, D2`` keep versions for at least D1 days and delete when exceeds D2 days
- * ``disabled`` versions auto clean disabled, versions will be kept forever
+ *
+ * * ``auto``
+ * default setting. Automatically expire versions according to expire
+ * rules. Please refer to Files_versions online documentation for more
+ * info.
+ * * ``D, auto``
+ * keep versions at least for D days, apply expire rules to all versions
+ * that are older than D days
+ * * ``auto, D``
+ * delete all versions that are older than D days automatically, delete
+ * other versions according to expire rules
+ * * ``D1, D2``
+ * keep versions for at least D1 days and delete when exceeds D2 days
+ * * ``disabled``
+ * versions auto clean disabled, versions will be kept forever
*/
'versions_retention_obligation' => 'auto',
-
/**
* ownCloud Verifications
*
@@ -1081,6 +1088,9 @@ $CONFIG = array(
/**
* List of trusted proxy servers
+ *
+ * If you configure these also consider setting `forwarded_for_headers` which
+ * otherwise defaults to `HTTP_X_FORWARDED_FOR` (the `X-Forwarded-For` header).
*/
'trusted_proxies' => array('203.0.113.45', '198.51.100.128'),
@@ -1135,6 +1145,15 @@ $CONFIG = array(
'debug' => false,
/**
+ * Skips the migration test during upgrades
+ *
+ * If this is set to true the migration test are deactivated during upgrade.
+ * This is only recommended in installations where upgrade tests are run in
+ * advance with the same data on a test system.
+ */
+'update.skip-migration-test' => false,
+
+/**
* This entry is just here to show a warning in case somebody copied the sample
* configuration. DO NOT ADD THIS SWITCH TO YOUR CONFIGURATION!
*