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
2019-01-23Honor remember_login_cookie_lifetimeRoeland Jago Douma
If the remember_login_cookie_lifetime is set to 0 this means we do not want to use remember me at all. In that case we should also not creatae a remember me cookie and should create a proper temp token. Further this specifies that is not 0 the remember me time should always be larger than the session timeout. Because else the behavior is not really defined. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-12-01Expose Swift Mailer streaming options in config, fixes #12702Branko Kokanovic
Signed-off-by: Branko Kokanovic <branko@kokanovic.org>
2018-11-29Apply patch from @cwiedmann but drop -oi option for pipeCarsten Wiedmann
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2018-11-22Make connectivity check domains configurableSylvia van Os
Signed-off-by: Sylvia van Os <sylvia@hackerchick.me>
2018-10-31Merge pull request #12089 from Rayn0r/masterDennis1993
added possibility to disable autocomplete in login form
2018-10-30added sample config for turning off form autocompletion on login pageRayn0r
Signed-off-by: Rayn0r <Andre.Weidemann@web.de>
2018-10-30Extending documentation in config.sample.php for `trusted_proxies`Oliver Wegner
Signed-off-by: Oliver Wegner <void1976@gmail.com>
2018-10-02Make logfile's mode configurable.Roland Tapken
The file logger currently resets the mode of the logfile to 0640. When the webserver is running as a different user than the cron job (but both are in the same group) the files mode has to be 0660. The current implementation breaks logging for the user that is not the owner of the logfile. This patch introduces a new config option 'logfilemode' that expects an octal value (defaults to 0640). Unless the value is lower or equal than 0 the logfiles mode will be resetted to this value. Signed-off-by: Roland Tapken <roland@bitarbeiter.net>
2018-09-04Fix typo in config.sample.phpMarius Blüm
Signed-off-by: Marius Blüm <marius@lineone.io>
2018-08-24Merge pull request #10801 from ↵Morris Jobke
nextcloud/documentation/10526/add-sample-config-for-heic Add sample config for HEIC image previews
2018-08-23Show link to simple sign up pageMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-08-22Add sample config for HEIC image previewsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-08-20Fix comment style in config sampleMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-08-12Drop support for xcacheDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2018-07-13Update documentation for #10198Morris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-07-04Kill php mail from settingsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-06-29Added Systemd.log documentation to config.sample.phpJohannes Ernst
Changed name of default system (not systemd) logger from ownCloud to Nextcloud, to be consistent Fixed license per https://github.com/nextcloud/server/pull/9760#discussion_r195026784 Pulled upstream updates Signed-off-by: Johannes Ernst <jernst@indiecomputing.com>
2018-06-27handle config.php valuesThomas Citharel
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
2018-06-06Add warningRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-06-06Configurable list for opt out from same site cookie protectionjaltek
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-04-24Merge pull request #9280 from nextcloud/bugfix/noid/swift-v3-scopeRoeland Jago Douma
Swift v3 requires setting a scope
2018-04-23Swift v3 requires setting a scopeRoeland Jago Douma
Unscoped auth is not guaranteed to return a catalog. So require the scope to be set properly. See https://developer.openstack.org/api-ref/identity/v3/index.html#password-authentication-with-unscoped-authorization Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-04-23Remove unused config optionMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-04-16Provide an option to disable HTML emailsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-04-11Set the default log rotate size to 100 MBMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-03-26Use customclient_* values by default and do not use them in custom themes ↵Julius Härtl
anymore Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-03-14Fix bucket and container usageRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-02-26fix: change 'sqlite' to 'sqlite3'BernieO
@MorrisJobke asked me to open this pull request in the server repo instead of the documentation repo: https://github.com/nextcloud/documentation/pull/690 Text from the documentation pull request: On a fresh Nextcloud 13 Installation the default value for dbtype in config.php is 'sqlite3' (and not 'sqlite'). I also noticed that on previous versions. Despite the fact that Nextcloud 13 also works though, if that value is manually changed to 'sqlite', I would suggest to change that in the documentation to the actually used value created when installing Nextcloud - and that is 'sqlite3'.
2018-02-26Some swift v3 example configRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-01-12Raise PHP version number to PHP 7.0Morris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2018-01-08Max preview size to 4096x4096Roeland Jago Douma
With HiDPI screens. And even normal HD screens you want more detail from your pictures. Or the ability to somewhat zoom on you previews. For this we need somewhat larger previews. Moving the default to 4096x4096 is a step up. Users that want the old behavior can still set the values in config.php Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-01-08The max_scale_factor is not used anymore.Roeland Jago Douma
We never generate previews larger than the original. So the config setting can be removed. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-12-08Merge pull request #7334 from ↵blizzz
nextcloud/feature/noid/language-depending-skeleton-directory Allow `{lang}` as a placeholder in the skeleton directory
2017-12-08Fallback to "default" and check if directory existsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-12-06Merge pull request #7351 from nextcloud/change-default-german-languageRoeland Jago Douma
use formal version of German by default
2017-12-05Fix typos in config.sample.phpMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-12-01update documentationBjoern Schiessle
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
2017-11-30Allow to skip data dir permission checks by configArthur Schiwon
Enables installation on services that don't allow/support permission changes. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2017-11-29Allow `{lang}` as a placeholder in the skeleton directoryJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-11-13Fix typo in sample configMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-10-27configurable amount of autocomplete results in commentsArthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2017-10-25add config parameter sampleArthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2017-08-30Add side effect noteMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-08-22Allow to sort groups by nameJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-08-17Always log cron executionMorris Jobke
There was a setting to disable the last execution of cron. There is no known problem with this write access and it was also questioned when this feature was build in https://github.com/owncloud/core/pull/7689#issuecomment-38264707 Recently there was also a bug report about a non-visible last cron execution (#6088) - let's better remove this. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-07-19Fix config.sample.php documentationMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-06-21Allow to force a language and set it via the ocs apiJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-06-13Revert "allow admin to disable groups on personal page"Morris Jobke
This reverts commit 28e1a9da6cd3bce3cc843727d54094db4969dd7b. See #5259
2017-06-06Merge pull request #5259 from nextcloud/disable-groups-on-personal-pageMorris Jobke
allow admin to disable groups on personal page
2017-06-06Allow to overwrite the email template againJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>