From 58efbf4d4772a54f1e353d6afe568df354fb99dd Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 26 May 2016 03:35:14 +0200 Subject: [PATCH] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index 9ca4580b1..4d7e63687 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -268,6 +268,14 @@ Enable or disable session keep-alive when a user is logged in to the Web UI. Enabling this sends a "heartbeat" to the server to keep it from timing out. +:: + + 'token_auth_enforced' => false, + +Enforce token authentication for clients, which blocks requests using the user +password for enhanced security. Users need to generate tokens in personal settings +which can be used as passwords on their clients. + :: 'skeletondirectory' => '/path/to/owncloud/core/skeleton', @@ -1128,6 +1136,15 @@ Location of the cache folder, defaults to ``data/$user/cache`` where ``$cache_path/$user`` where ``$cache_path`` is the configured cache directory and ``$user`` is the user. +:: + + 'cache_chunk_gc_ttl' => 86400, // 60*60*24 = 1 day + +TTL of chunks located in the cache folder before they're removed by +garbage collection (in seconds). Increase this value if users have +issues uploading very large files via the ownCloud Client as upload isn't +completed within one day. + Using Object Store with ownCloud --------------------------------