From 9df50ed8e8c90bb05b46b23196443b3ff441ff6d Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Tue, 7 Feb 2023 18:31:02 +0100 Subject: [PATCH] Add info about versions labeling and deleting https://github.com/nextcloud/server/pull/35160 Signed-off-by: Louis Chemineau --- .../config_sample_php_parameters.rst | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index f0e4dcd2e..a52cb7f16 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -1674,16 +1674,16 @@ Server details for one or more memcached servers to use for memory caching. \Memcached::OPT_SEND_TIMEOUT => 50, \Memcached::OPT_RECV_TIMEOUT => 50, \Memcached::OPT_POLL_TIMEOUT => 50, - + // Enable compression \Memcached::OPT_COMPRESSION => true, - + // Turn on consistent hashing \Memcached::OPT_LIBKETAMA_COMPATIBLE => true, - + // Enable Binary Protocol \Memcached::OPT_BINARY_PROTOCOL => true, - + // Binary serializer vill be enabled if the igbinary PECL module is available //\Memcached::OPT_SERIALIZER => \Memcached::SERIALIZER_IGBINARY, ], @@ -2617,6 +2617,22 @@ Enables fetching open graph metadata from remote urls Defaults to ``true`` +:: + + 'enable_version_labeling' => true, + +Allow the users to label their file versions + +Defaults to ``true`` + +:: + + 'enable_version_deletion' => true, + +Allow the users to delete their file versions + +Defaults to ``true`` + .. ALL_OTHER_SECTIONS_END .. Generated content above. Don't change this.