summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Migrate to Symfony MailerCôme Chilliet2023-02-021-14/+9
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Fix default value for files_no_background_scanmax-nextcloud2023-01-241-1/+1
| | | | | The value is read in https://github.com/nextcloud/server/blob/b888c6146327d842e21988b0d90d6ade4f3a9435/apps/files/lib/BackgroundJob/ScanFiles.php#L105 and the default value is false. Signed-off-by: max-nextcloud <max@nextcloud.com>
* Update config/config.sample.php William2023-01-181-1/+1
| | | | | | add better description Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Signed-off-by: William <william.hak57@gmail.com>
* add documentation preview_ffmpeg_pathWilliam2023-01-181-1/+8
| | | | | | add preview_ffmpeg_path documentation. document custom path for ffmpeg so it can be used by the previewprovider to create video previews with the snap package of nextcloud. Signed-off-by: William <william.hak57@gmail.com>
* Update config/config.sample.php: fix typos.CaptainSifff2023-01-041-1/+1
| | | | Co-authored-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> Signed-off-by: CaptainSifff <CaptainSifff@gmx.de>
* elaborate on what is required for using the tempdirectory setting of nextcloudFlorian Goth2023-01-041-1/+4
| | | | Signed-off-by: Florian Goth <fgoth@physik.uni-wuerzburg.de>
* docs: trusted_proxies support IPv6 rangesDaniel Kesselberg2023-01-031-5/+3
| | | | | | Support for IPv6 ranges was added by https://github.com/nextcloud/server/pull/32615 Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Fix comments in sample config to be correctly marked as verbatimChristian Wolf2022-12-281-26/+26
| | | | | | | | | The comments were not marked as verbatim and thus the Sphinx compiler to generate the online admin manual interpreted backslashes as special chars. They disappeared from the output. By adding ``, it is marked as verbatim and the backslashes are not removed. Signed-off-by: Christian Wolf <github@christianwolf.email>
* Fix some issues that were not yet introduced in changes to sample configChristian Wolf2022-12-271-7/+8
| | | | | | | This should not change anything but fix some documentation issues. This change should not change anything in the implemenetation. Signed-off-by: Christian Wolf <github@christianwolf.email>
* Reorder the sample config file in order to have a cleaner structure and ↵Christian Wolf2022-12-271-57/+57
| | | | | | | | | | better sectioning in the online manual The change should only affect the conmments and reorder the config lines Copy modifications from https://github.com/nextcloud/documentation/pull/9166 into sample config file Signed-off-by: Christian Wolf <github@christianwolf.email>
* increase preview_max_memory and make it easier to debugSimon L2022-12-221-2/+2
| | | | Signed-off-by: Simon L <szaimen@e.mail.de>
* Language fixes in example configJoas Schilling2022-12-081-36/+36
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* More fixingJoas Schilling2022-11-251-12/+12
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove reference to Redis sentinel from configuration docsRaul2022-11-101-4/+1
| | | | Signed-off-by: Raul <r.ferreira.fuentes@gmail.com>
* Limit-number-of-concurrent-preview-generationsszaimen2022-11-051-0/+22
| | | | | Signed-off-by: Bowen Ding <dbw9580@live.com> Signed-off-by: szaimen <szaimen@e.mail.de>
* update browser warningszaimen2022-10-251-2/+2
| | | | Signed-off-by: szaimen <szaimen@e.mail.de>
* Add config and fix seleniumJohn Molakvoæ2022-10-191-0/+10
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Update config.sample.phpRetidurc Silvernight2022-09-231-0/+6
| | | | Signed-off-by: Retidurc Silvernight <retidurc@silvernight.social>
* Merge pull request #24596 from kofemann/dcache-wormVincent Petry2022-09-161-0/+8
|\ | | | | make NextCloud WORM file system friendly
| * config: add a switch to control truncate before updateTigran Mkrtchyan2022-09-161-0/+8
| | | | | | | | | | | | | | | | | | To avoid extra truncate on non WORM file systems, add a new config option `localstorage.unlink_on_truncate`, which defaults to false. The OC\Files\Storage\Local is update to respect that option. Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
* | Merge pull request #33692 from nextcloud/update-dirblizzz2022-09-021-0/+9
|\ \ | | | | | | Document and use the new updateDirectory if set
| * | Fix small typoGit'Fellow2022-08-251-1/+1
| | | | | | | | | Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
| * | Document updatedirectory optionGit'Fellow2022-08-251-0/+9
| |/ | | | | Signed-off-by: Git'Fellow <carlos@reendex.com>
* | Merge pull request #33470 from SpamReceiver/patch-2Vincent Petry2022-09-011-7/+21
|\ \ | | | | | | Make the description of `trashbin_retention_obligation` more clear
| * | address reviewSimon L2022-08-211-1/+1
| | | | | | | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de> Co-authored-by: Vincent Petry <vincent@nextcloud.com>
| * | Solution for #6889SpamReceiver2022-08-051-7/+21
| | | | | | | | | | | | | | | See also: nextcloud/documentation#7046 Signed-off-by: SpamReceiver <spam-receiver@web.de>
* | | Refactor cache handlingJulius Härtl2022-08-311-0/+7
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Flip bulkupload.enabled default value to trueCôme Chilliet2022-08-291-2/+2
| | | | | | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | | Add bulkupload.enabled configuration switchCôme Chilliet2022-08-251-0/+7
| |/ |/| | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | Merge pull request #33569 from nextcloud/enh/hide-projectsJulius Härtl2022-08-251-1/+9
|\ \ | | | | | | Add config option to hide deprecated projects in sharing tab by default
| * | Hide deprecated projects in sharing tab by defaultChristopher Ng2022-08-181-1/+9
| |/ | | | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* / Add config option to disable strict session timeout to be able to use ↵Julius Härtl2022-08-171-0/+11
|/ | | | | | | | read_and_close Fixed https://github.com/nextcloud/server/issues/29356 Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Handle one time passwordsCarl Schwan2022-07-051-0/+15
| | | | | | | | This adds an option to disable storing passwords in the database. This might be desirable when using single use token as passwords or very large passwords. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Merge pull request #31197 from nextcloud/acsfer-patch-1Carl Schwan2022-06-131-1/+2
|\ | | | | Add memcached unix socket instructions
| * Add memcached unis socket instructionszroebg2022-02-151-1/+2
| |
* | Merge pull request #32660 from susnux/masterVincent Petry2022-06-101-0/+9
|\ \ | | | | | | Feature: Add loglevel exported JS OC.config object
| * | Feature: Add and expose frontend loglevelFerdinand Thiessen2022-06-061-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a new config variable `loglevel_frontend`, allowing to configure the logging level of the browser part as requested in nextcloud/nextcloud-logger#141 If not configured the `loglevel` is used as the fallback. Signed-off-by: Ferdinand Thiessen <rpm@fthiessen.de>
* | | Expose umask override value as config parameter: localstorage.umaskMartin Brugnara2022-06-051-0/+12
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 451c06d introduced override for umask value. This is needed to avoid broken env configuration or dirty workers to mess with the permissions when creating new files. Most Nextcloud, that does not integrate with external software would work fine with an hard-coded value (451c06d set it at 022). Advanced install may require more flexibility, as such this commit exposes the "umask override value" as configuration parameter: `localstorage.umask` It defaults to 0022 both in code and in config/config.sample.php . Signed-off-by: Martin Brugnara <martin@0x6d62.eu>
* | Allow to tweak default scopes for accountsThomas Citharel2022-05-161-0/+14
| | | | | | | | | | | | Close #6582 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | only log diagnostic events if a treshhold is setRobin Appelman2022-05-131-1/+3
| | | | | | | | | | | | this prevents log spam and it's rare that you actually want to very short events logged anyway Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #32110 from plumbeo/binary-encoding-4Vincent Petry2022-05-051-0/+9
|\ \ | | | | | | Save encrypted files in binary format
| * | Save encrypted files in binary formatplumbeo2022-05-041-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Default to the more space-efficient binary encoding for newly encrypted files instead of the traditional base64 encoding, eliminating the 33% overhead. The new option 'encryption.use_legacy_encoding' allows to force the legacy encoding format if needed. Files encoded in the old format remain readable. Based on https://github.com/owncloud/encryption/pull/224 and https://github.com/owncloud/core/pull/38249 by karakayasemi. Signed-off-by: plumbeo <plumbeo@users.noreply.github.com>
* | | Add enforce_theme example IDsJohn Molakvoæ2022-04-301-1/+2
| | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* | | Allow to override the default themeJohn Molakvoæ2022-04-301-0/+6
| | | | | | | | | | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* | | Adds uploadPartSize to config sample.Pierre Ozoux2022-04-271-0/+2
|/ / | | | | | | | | | | closes https://github.com/nextcloud/server/issues/24390 Signed-off-by: Pierre Ozoux <pierre@ozoux.net>
* | Merge pull request #31975 from ↵Vincent Petry2022-04-141-0/+12
|\ \ | | | | | | | | | | | | nextcloud/bugfix/31952/fix-mail-link-share-password-expiration-settings Adjust settings for mail link password
| * | Adjust settings for mail link passwordVincent Petry2022-04-141-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | Rename the settings and invert the meaning. Increase default interval to one hour. Changed the interval to be a number of seconds, to align with other setting styles. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* | | Add a metadata service to store file metadataCarl Schwan2022-04-131-0/+11
|/ / | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | Merge pull request #31194 from ↵Vincent Petry2022-04-061-0/+5
|\ \ | | | | | | | | | | | | nextcloud/feat/allow-to-exclude-groups-from-password-enforcement Allow to disable password policy enforcement for selected groups
| * | Allow to disable password policy enforcement for selected groupsCarl Schwan2022-04-051-0/+5
| | | | | | | | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu> Co-authored-by: Vincent Petry <vincent@nextcloud.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>