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-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.
2022-01-11Prevent loading images that would require too much memory.Joachim Bauch
For most image formats, the header specifies the width/height. PHP allocates an image object from that size, even if the actual image data is much smaller. This image object size is not limited by the limit configured in PHP. The memory limit can be configured through "config.php" setting "preview_max_memory" and defaults to 128 MBytes which should be enough for most images without filling up all memory. Signed-off-by: Joachim Bauch <bauch@struktur.de>
2021-12-17Merge pull request #30130 from nextcloud/fix/config_is_read_onlyChristoph Wurst
Don't write to config file if `config_is_read_only` is set
2021-12-15Add option to disallow creation of local storagesVincent Petry
Introduce a new config option to prevent web UI admins to create or edit external storages of type "local". Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-12-13Don't write to config file if `config_is_read_only` is setJonas Meurer
Also don't write to cache in this case to prevent cache and config file being out of sync. Fixes: #29901 Signed-off-by: Jonas Meurer <jonas@freesources.org>
2021-12-07Update default row_formatacsfer
2021-12-02Allow to log DB, redis and LDAP requests into filesJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-10-15Fix background scan doc in configVincent Petry
The background scanner only processes entries with size < 0 Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-10-14Merge pull request #29135 from nextcloud/feat/appstore-filteringJoas Schilling
Allow to filter apps from the appstore
2021-10-13Merge pull request #28637 from JensTimmerman/masterDaniel
Update config.sample.php
2021-10-13Allow to whitelist apps from the apsptoreJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2021-10-08Add documentation for files_no_background_scanDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2021-09-15Add config.php option for transfer ownershipVincent Petry
Add option to specify whether to transfer incoming shares by default. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2021-09-14Copy doc update to sample configJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-09-09Merge pull request #28677 from nextcloud/fix/noid/mysql-collationblizzz
make it possible to override the default collation on mysql
2021-09-06Let users choose a share_folderHinrich Mahler
2021-09-01make it possible to override the default collationArthur Schiwon
- allows admins to configure it for edge cases like accent sensitivity Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2021-08-29Update config.sample.phpJens Timmerman
fix typo
2021-08-29Update config.sample.phpJens Timmerman
fixes nextcloud/server#21674