Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
AgeCommit message (Collapse)Author
2022-11-05Limit-number-of-concurrent-preview-generationsszaimen
Signed-off-by: Bowen Ding <dbw9580@live.com> Signed-off-by: szaimen <szaimen@e.mail.de>
2022-10-26update browser warningszaimen
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-10-19Add config and fix seleniumJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-09-23Update config.sample.phpRetidurc Silvernight
Signed-off-by: Retidurc Silvernight <retidurc@silvernight.social>
2022-09-16Merge pull request #24596 from kofemann/dcache-wormVincent Petry
make NextCloud WORM file system friendly
2022-09-16config: add a switch to control truncate before updateTigran Mkrtchyan
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>
2022-09-02Merge pull request #33692 from nextcloud/update-dirblizzz
Document and use the new updateDirectory if set
2022-09-01Merge pull request #33470 from SpamReceiver/patch-2Vincent Petry
Make the description of `trashbin_retention_obligation` more clear
2022-08-31Refactor cache handlingJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-08-29Flip bulkupload.enabled default value to truefix/improve-bulk-uploadCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-08-25Fix small typoupdate-dirGit'Fellow
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
2022-08-25Add bulkupload.enabled configuration switchCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-08-25Document updatedirectory optionGit'Fellow
Signed-off-by: Git'Fellow <carlos@reendex.com>
2022-08-25Merge pull request #33569 from nextcloud/enh/hide-projectsJulius Härtl
Add config option to hide deprecated projects in sharing tab by default
2022-08-21address reviewSimon L
Signed-off-by: szaimen <szaimen@e.mail.de> Co-authored-by: Vincent Petry <vincent@nextcloud.com>
2022-08-18Hide deprecated projects in sharing tab by defaultenh/hide-projectsChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-08-17Add config option to disable strict session timeout to be able to use ↵Julius Härtl
read_and_close Fixed https://github.com/nextcloud/server/issues/29356 Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-08-05Solution for #6889SpamReceiver
See also: nextcloud/documentation#7046 Signed-off-by: SpamReceiver <spam-receiver@web.de>
2022-07-05Handle one time passwordsCarl Schwan
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>
2022-06-13Merge pull request #31197 from nextcloud/acsfer-patch-1Carl Schwan
Add memcached unix socket instructions
2022-06-10Merge pull request #32660 from susnux/masterVincent Petry
Feature: Add loglevel exported JS OC.config object
2022-06-06Feature: Add and expose frontend loglevelFerdinand Thiessen
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>
2022-06-05Expose umask override value as config parameter: localstorage.umaskMartin Brugnara
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>
2022-05-16Allow to tweak default scopes for accountsThomas Citharel
Close #6582 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-05-13only log diagnostic events if a treshhold is setevent-logger-log-minimumRobin Appelman
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>
2022-05-05Merge pull request #32110 from plumbeo/binary-encoding-4Vincent Petry
Save encrypted files in binary format
2022-05-04Save encrypted files in binary formatplumbeo
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>
2022-04-30Add enforce_theme example IDsJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-04-30Allow to override the default themeJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-04-27Adds uploadPartSize to config sample.Pierre Ozoux
closes https://github.com/nextcloud/server/issues/24390 Signed-off-by: Pierre Ozoux <pierre@ozoux.net>
2022-04-14Merge pull request #31975 from ↵Vincent Petry
nextcloud/bugfix/31952/fix-mail-link-share-password-expiration-settings Adjust settings for mail link password
2022-04-14Adjust settings for mail link passwordVincent Petry
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>
2022-04-13Add a metadata service to store file metadataCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-04-06Merge pull request #31194 from ↵Vincent Petry
nextcloud/feat/allow-to-exclude-groups-from-password-enforcement Allow to disable password policy enforcement for selected groups
2022-04-05Allow to disable password policy enforcement for selected groupsCarl Schwan
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>
2022-04-04Add a built-in profiler inside NextcloudCarl Schwan
The webui is provided by a seperate application named profiler Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-03-18Merge pull request #24166 from nextcloud/imaginary-prototypeCarl Schwan
Send images to Imaginary docker to generate previews
2022-03-18Add global profile toggle configChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-03-17Send images to imaginary docker to generate previewsimaginary-prototypeVincent Petry
Signed-off-by: Carl Schwan <carl@carlschwan.eu> Co-Authored-by: Vincent Petry <vincent@nextcloud.com>
2022-03-07allow adding protocol to domains in 'connectivity_check_domains' configJulien Veyssier
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
2022-02-28Diagnostics event logging to Nextcloud logJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net> Add config samples Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-02-20Typoacsfer
2022-02-20Clarify `preview_max_filesize_image` behavioracsfer
Fix https://github.com/nextcloud/server/issues/30220
2022-02-15Add memcached unis socket instructionsacsfer-patch-1zroebg
2022-02-07Allow sysadmins to define a maintenance window where heavier jobs can runJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-01-25Merge pull request #30763 from ↵John Molakvoæ
nextcloud/feature/noid/allow-to-log-audit-to-syslog
2022-01-20allow changing the top-left logo link target in system configJulien Veyssier
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
2022-01-20Allow write audit log to syslog and systemdlogJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-01-19Merge pull request #30129 from nextcloud/mdb10.6-pipelineJohn Molakvoæ
2022-01-11Merge pull request #30291 from nextcloud/image-memory-limitJoas Schilling
Prevent loading images that would require too much memory.