From 4182b62e8dc9b8eae00522fbdfc8474c35e55707 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Sat, 27 Jul 2024 02:49:26 +0000 Subject: [PATCH] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index ae6256efc..424a3860f 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -1946,10 +1946,13 @@ preview_imaginary_url Set the URL of the Imaginary service to send image previews to. -Also requires the ``OC\Preview\Imaginary`` -provider to be enabled in the 'enabledPreviewProviders' array to create previews for these mimetypes: bmp, x-bitmap, png, jpeg, gif, heic, heif, svg+xml, tiff, webp and illustrator. - -If you want Imaginary to also create preview images from PDF Documents, you have to add ``OC\Preview\ImaginaryPDF`` provider as well. +Also requires the + - ``OC\Preview\Imaginary`` +provider to be enabled in the 'enabledPreviewProviders' array, to create previews for these mimetypes: +bmp, x-bitmap, png, jpeg, gif, heic, heif, svg+xml, tiff, webp and illustrator. +If you want Imaginary to also create preview images from PDF Documents, you have to add + - ``OC\Preview\ImaginaryPDF`` +provider as well. See https://github.com/h2non/imaginary @@ -2314,16 +2317,16 @@ memcached_options \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, ],