|
|
|
|
@ -502,7 +502,7 @@ $CONFIG = [
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enable SMTP class debugging.
|
|
|
|
|
* NOTE: ``loglevel`` will likely need to be adjusted too. See docs:
|
|
|
|
|
* NOTE: ``loglevel`` will likely need to be adjusted too. See docs:
|
|
|
|
|
* https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/email_configuration.html#enabling-debug-mode
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``false``
|
|
|
|
|
@ -663,7 +663,7 @@ $CONFIG = [
|
|
|
|
|
* are generated within Nextcloud using any kind of command line tools (cron or
|
|
|
|
|
* occ). The value should contain the full base URL:
|
|
|
|
|
* ``https://www.example.com/nextcloud``
|
|
|
|
|
* Please make sure to set the value to the URL that your users mainly use to access this Nextcloud.
|
|
|
|
|
* Please make sure to set the value to the URL that your users mainly use to access this Nextcloud.
|
|
|
|
|
* Otherwise there might be problems with the URL generation via cron.
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``''`` (empty string)
|
|
|
|
|
@ -1323,18 +1323,18 @@ $CONFIG = [
|
|
|
|
|
/**
|
|
|
|
|
* custom path for ffmpeg binary
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``null`` and falls back to searching ``avconv`` and ``ffmpeg``
|
|
|
|
|
* Defaults to ``null`` and falls back to searching ``avconv`` and ``ffmpeg``
|
|
|
|
|
* in the configured ``PATH`` environment
|
|
|
|
|
*/
|
|
|
|
|
'preview_ffmpeg_path' => '/usr/bin/ffmpeg',
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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,
|
|
|
|
|
* 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
|
|
|
|
|
* If you want Imaginary to also create preview images from PDF Documents, you
|
|
|
|
|
* have to add the ``OC\Preview\ImaginaryPDF`` provider as well.
|
|
|
|
|
*
|
|
|
|
|
* See https://github.com/h2non/imaginary
|
|
|
|
|
@ -1978,6 +1978,17 @@ $CONFIG = [
|
|
|
|
|
*/
|
|
|
|
|
'mysql.collation' => null,
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* PostgreSQL SSL connection
|
|
|
|
|
*/
|
|
|
|
|
'pgsql_ssl' => [
|
|
|
|
|
'mode' => '',
|
|
|
|
|
'cert' => '',
|
|
|
|
|
'rootcert' => '',
|
|
|
|
|
'key' => '',
|
|
|
|
|
'crl' => '',
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Database types that are supported for installation.
|
|
|
|
|
*
|
|
|
|
|
@ -2066,9 +2077,9 @@ $CONFIG = [
|
|
|
|
|
/**
|
|
|
|
|
* Deny extensions from being used for filenames.
|
|
|
|
|
* Matching existing files can no longer be updated and in matching folders no files can be created anymore.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* The '.part' extension is always forbidden, as this is used internally by Nextcloud.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Defaults to ``array('.filepart', '.part')``
|
|
|
|
|
*/
|
|
|
|
|
'forbidden_filename_extensions' => ['.part', '.filepart'],
|
|
|
|
|
|