diff options
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 05efcaa2738..5f29933ec65 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -849,25 +849,16 @@ $CONFIG = array( * The maximum width, in pixels, of a preview. A value of ``null`` means there * is no limit. * - * Defaults to ``2048`` + * Defaults to ``4096`` */ -'preview_max_x' => 2048, +'preview_max_x' => 4096, /** * The maximum height, in pixels, of a preview. A value of ``null`` means there * is no limit. * - * Defaults to ``2048`` + * Defaults to ``4096`` */ -'preview_max_y' => 2048, -/** - * If a lot of small pictures are stored on the Nextcloud instance and the - * preview system generates blurry previews, you might want to consider setting - * a maximum scale factor. By default, pictures are upscaled to 10 times the - * original size. A value of ``1`` or ``null`` disables scaling. - * - * Defaults to ``2`` - */ -'preview_max_scale_factor' => 10, +'preview_max_y' => 4096, /** * max file size for generating image previews with imagegd (default behavior) |