|
502 | 502 |
|
503 | 503 | /** |
504 | 504 | * Enable SMTP class debugging. |
505 | | - * NOTE: ``loglevel`` will likely need to be adjusted too. See docs: |
| 505 | + * NOTE: ``loglevel`` will likely need to be adjusted too. See docs: |
506 | 506 | * https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/email_configuration.html#enabling-debug-mode |
507 | 507 | * |
508 | 508 | * Defaults to ``false`` |
|
663 | 663 | * are generated within Nextcloud using any kind of command line tools (cron or |
664 | 664 | * occ). The value should contain the full base URL: |
665 | 665 | * ``https://www.example.com/nextcloud`` |
666 | | - * Please make sure to set the value to the URL that your users mainly use to access this Nextcloud. |
| 666 | + * Please make sure to set the value to the URL that your users mainly use to access this Nextcloud. |
667 | 667 | * Otherwise there might be problems with the URL generation via cron. |
668 | 668 | * |
669 | 669 | * Defaults to ``''`` (empty string) |
|
1323 | 1323 | /** |
1324 | 1324 | * custom path for ffmpeg binary |
1325 | 1325 | * |
1326 | | - * Defaults to ``null`` and falls back to searching ``avconv`` and ``ffmpeg`` |
| 1326 | + * Defaults to ``null`` and falls back to searching ``avconv`` and ``ffmpeg`` |
1327 | 1327 | * in the configured ``PATH`` environment |
1328 | 1328 | */ |
1329 | 1329 | 'preview_ffmpeg_path' => '/usr/bin/ffmpeg', |
1330 | 1330 |
|
1331 | 1331 | /** |
1332 | 1332 | * Set the URL of the Imaginary service to send image previews to. |
1333 | | - * Also requires the ``OC\Preview\Imaginary`` provider to be enabled in the |
1334 | | - * ``enabledPreviewProviders`` array, to create previews for these mimetypes: bmp, |
| 1333 | + * Also requires the ``OC\Preview\Imaginary`` provider to be enabled in the |
| 1334 | + * ``enabledPreviewProviders`` array, to create previews for these mimetypes: bmp, |
1335 | 1335 | * x-bitmap, png, jpeg, gif, heic, heif, svg+xml, tiff, webp and illustrator. |
1336 | 1336 | * |
1337 | | - * If you want Imaginary to also create preview images from PDF Documents, you |
| 1337 | + * If you want Imaginary to also create preview images from PDF Documents, you |
1338 | 1338 | * have to add the ``OC\Preview\ImaginaryPDF`` provider as well. |
1339 | 1339 | * |
1340 | 1340 | * See https://github.com/h2non/imaginary |
|
1978 | 1978 | */ |
1979 | 1979 | 'mysql.collation' => null, |
1980 | 1980 |
|
| 1981 | +/** |
| 1982 | + * PostgreSQL SSL connection |
| 1983 | + */ |
| 1984 | +'pgsql_ssl' => [ |
| 1985 | + 'mode' => '', |
| 1986 | + 'cert' => '', |
| 1987 | + 'rootcert' => '', |
| 1988 | + 'key' => '', |
| 1989 | + 'crl' => '', |
| 1990 | +], |
| 1991 | + |
1981 | 1992 | /** |
1982 | 1993 | * Database types that are supported for installation. |
1983 | 1994 | * |
|
2066 | 2077 | /** |
2067 | 2078 | * Deny extensions from being used for filenames. |
2068 | 2079 | * Matching existing files can no longer be updated and in matching folders no files can be created anymore. |
2069 | | - * |
| 2080 | + * |
2070 | 2081 | * The '.part' extension is always forbidden, as this is used internally by Nextcloud. |
2071 | | - * |
| 2082 | + * |
2072 | 2083 | * Defaults to ``array('.filepart', '.part')`` |
2073 | 2084 | */ |
2074 | 2085 | 'forbidden_filename_extensions' => ['.part', '.filepart'], |
|
0 commit comments