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
2016-05-24clarify filesystem_check_changes in config.sample.phpCarla Schroder
2016-05-13Merge pull request #24540 from ↵Vincent Petry
owncloud/stable9-do-not-automatically-try-to-enable-index-php-less-urls [Stable9] do not automatically try to enable index php less urls
2016-05-11Make update server URL configurableLukas Reschke
Currently testing the updates is a big problem and not really super easy possible. Since we now have a new updater server we should also make this configurable so that people can properly test updates.
2016-05-10Do not automatically try to enable index.php-less URLsLukas Reschke
The current logic for mod_rewrite relies on the fact that people have properly configured ownCloud, basically it reads from the `overwrite.cli.ur l` entry and then derives the `RewriteBase` from it. This usually works. However, since the ownCloud packages seem to install themselves at `/owncloud` (because subfolders are cool or so…) _a lot_ of people have just created a new Virtual Host for it or have simply symlinked the path etc. This means that `overwrite.cli.url` is wrong, which fails hard if it is used as RewriteBase since Apache does not know where it should serve files from. In the end the ownCloud instance will not be accessible anymore and users will be frustrated. Also some shared hosters like 1&1 (because using shared hosters is so awesome… ;-)) have somewhat dubious Apache configurations or use versions of mod_rewrite from the mediveal age. (because updating is money or so…) Anyhow. This makes this explicitly an opt-in configuration flag. If `htaccess.RewriteBase` is set then it will configure index.php-less URLs, if admins set that after installation and don't want to wait until the next ownCloud version they can run `occ maintenance:update:htaccess`. For ownCloud 9.0 we also have to add a repair step to make sure that instances that already have a RewriteBase configured continue to use it by copying it into the config file. That way all existing URLs stay valid. That one is not in this PR since this is unneccessary in master. Effectively this reduces another risk of breakage when updating from ownCloud 8 to ownCloud 9. Fixes https://github.com/owncloud/core/issues/24525, https://github.com/owncloud/core/issues/24426 and probably some more.
2016-03-02Add Versions app header to config.sample.phpRealRancor
2016-03-01add config sampleRobin Appelman
2016-02-03Revert "setting to skip migration tests by default"Morris Jobke
2016-02-03Merge pull request #22084 from owncloud/configphp-fixesThomas Müller
small corrections; Web is capitalized, webroot is one lowercase word
2016-02-03small corrections; Web is capitalized, webroot is one lowercase wordCarla Schroder
2016-02-03setting to skip migration tests by defaultMorris Jobke
* if you install owncloud via package it is not possible to skip migration tests * this also allows to disable migration tests for an instance by default
2016-01-20Allow custom implementation of system tag managersVincent Petry
Added config.php option to replace the default implementation of system tag manager and system tag object mapper. Also adjusted the comments manager factory to inject the server container
2016-01-13[Share 2.0] Add share provider factoryRoeland Jago Douma
* Add providers * Add share manager to server container * Use share manager from server container * Properly get the share manager
2016-01-12Merge pull request #21336 from owncloud/system-root-certsThomas Müller
Allow admins to add system wide root certificates
2016-01-12Add a config option to enable certificate managementRobin Appelman
2016-01-12Add config switch to disable the .well-known URL checkMorris Jobke
2016-01-08Merge pull request #21139 from owncloud/makeswifturltypeconfigurableThomas Müller
make url type configurable
2016-01-07remove mention of 'filesystem_check_changes' => 2 from the config sampleRobin Appelman
2015-12-31Update config.sample.phpJohannesKleine
I corrected the word order.
2015-12-16enforce_home_folder_naming_rule cannot be configured in config.phpblizzz
2015-12-11make url type configurableJörn Friedrich Dreyer
2015-12-09add icommentsmanger and icomment implementationArthur Schiwon
register CommentsManager service, allow override, document in config.sample.php don't insert autoincrement ids in tests, because of dislikes from oracle and pgsql specify timezone in null date only accepts strings for ID parameter that can be converted to int replace forgotten hardcoded IDs in tests react on deleted users react on file deletion Postgresql compatibility lastInsertId needs *PREFIX* with the table name do not listen for file deletion, because it is not reliable (trashbin, external storages) add runtime cache for comments
2015-12-07Allow specifying a custom reset-password-urlJoas Schilling
2015-12-01Support pretty URLsLukas Reschke
This changeset allows ownCloud to run with pretty URLs, they will be used if mod_rewrite and mod_env are available. This means basically that the `index.php` in the URL is not shown to the user anymore. Also the not deprecated functions to generate URLs have been modified to support this behaviour, old functions such as `filePath` will still behave as before for compatibility reasons. Examples: http://localhost/owncloud/index.php/s/AIDyKbxiRZWAAjP => http://localhost/owncloud/s/AIDyKbxiRZWAAjP http://localhost/owncloud/index.php/apps/files/ => http://localhost/owncloud/apps/files/ Due to the way our CSS and JS is structured the .htaccess uses some hacks for the final result but could be worse... And I was just annoyed by all that users crying for the removal of `index.php` ;-)
2015-10-30Add support for Redis password authLukas Reschke
For enhanced security it is recommended to configure Redis to only accept connections with a password. (http://redis.io/topics/security) This is especially critical since Redis supports the LUA scripting language and thus a simple SSRF vulnerability (as proven in http://benmmurphy.github.io/blog/2015/06/04/redis-eval-lua-sandbox-escape/ for example) may lead to a remote code execution.
2015-10-27Revert "setting to skip migration tests by default"Morris Jobke
This reverts commit 7cbdd9b90bcea3566b7d0198f23da3d427e6ef45.
2015-10-23Add syslog_tag docu to sample configSteffen Lindner
2015-10-13Restructure config.sample.php of masterRealRancor
2015-10-06Merge pull request #19207 from RealRancor/fix_mount.json_dirThomas Müller
Path to mount.json needs to be absolute in config.sample.php
2015-10-05Add notice about X-Forwarded-ForLukas Reschke
2015-10-01setting to skip migration tests by defaultMorris Jobke
* if you install owncloud via package it is not possible to skip migration tests * this also allows to disable migration tests for an instance by default
2015-09-30Markup fixes to trash bin sectionCarla Schroder
2015-09-29Path to mount.json needs to be absolute in config.sample.phpRealRancor
2015-09-25Add doc to config.sample for enforce LDAP home folder naming ruleMorris Jobke
* ref #16891
2015-09-23add example for 3rdparty configurationCarla Schroder
2015-09-22Move mimetype files into /resources/config/Lukas Reschke
2015-09-22Move certificate bundle into resources/config/Lukas Reschke
2015-09-21Minor text typosPhil Davis
that I noticed while looking at some code.
2015-09-16Merge pull request #19059 from owncloud/logginglevelsThomas Müller
correction to logging levels
2015-09-15correction to logging levelsCarla Schroder
2015-09-15Update options descriptionVictor Dubiniuk
2015-09-15ImprovementsVictor Dubiniuk
2015-09-15Add versions obligationVictor Dubiniuk
2015-09-12Merge pull request #18658 from owncloud/configurable-tempFrank Karlitschek
Configurable temporary directory
2015-09-06Add config.sample.php parameter for tempdirectoryRobin McCorkell
2015-09-02update config sampleRobin Appelman
2015-08-24Remove DEBUG constant and use config valueMorris Jobke
* introduces config.php option 'debug' that defaults to false * migrate DEBUG constant to config value
2015-08-20Merge pull request #18369 from owncloud/occ-logMorris Jobke
occ commands to manage logging
2015-08-19config.sample.php logging documentation clarificationRobin McCorkell
2015-08-17clean up typos in config.sample.phpCarla Schroder
2015-08-12Merge pull request #18065 from owncloud/new-trashbin-retentionThomas Müller
New trashbin retention