summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Cahnge URL for desktop clients directly to pop-upFelix A. Epp2016-12-081-1/+1
| | | | | | by adding `/#install-clients` to the URL Signed-off-by: Felix A. Epp <work@felixepp.de>
* Document updater channel & check for correct PHP version in updaterMorris Jobke2016-12-061-0/+11
| | | | | | * see https://github.com/nextcloud/updater/issues/53 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Add system config htaccess.IgnoreFrontController for prettyURLs w/o mod_envFelix Epp2016-11-161-6/+17
| | | | | | | Added the system config which sets all conditions to true that query the FrontControllerActive mod_env variable. Signed-off-by: Felix A. Epp <work@felixepp.de>
* make object prefix configurableJörn Friedrich Dreyer2016-11-141-4/+6
|
* Use new appstore APILukas Reschke2016-10-311-14/+0
| | | | | | This change introduces the new appstore API in Nextcloud. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Set 2.0.0 as minimum requirement for the desktop client in config.sample.phpThomas Müller2016-10-251-1/+1
|
* Add config option to update charset of mysql to utf8mb4Morris Jobke2016-10-191-0/+29
| | | | | * fully optional * requires additional options set in the database
* Use the same URL everywhereJoas Schilling2016-09-271-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Change updater URLJoas Schilling2016-09-081-1/+1
|
* Merge pull request #523 from Faldon/masterJoas Schilling2016-07-251-1/+1
|\ | | | | Renamed file logging
| * Changed logtype to file instead of owncloud.Thomas Pulzer2016-07-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Updated the config sample to point to log_type='file' - Renamed the Class for logfile logging to File in namespace 'OC\Log\'. Changed the occurrences of 'OC\Log\Owncloud' to 'OC\Log\File'. - Renamed the Class for log:file command to File in namespace 'OC\Core\Command\Log\File'. Changed registration of the command to use 'OC\Core\Command\Log\File'. - Changed default Syslog tag to Nextcloud - Retained backwards compatibility for configs with 'logtype' => 'owncloud' - Adjusted tests for the new file log. Closes #490.
* | Fix typoJoas Schilling2016-07-221-2/+2
|/
* Make the changes from ↵Joas Schilling2016-07-211-6/+6
| | | | https://github.com/nextcloud/documentation/commit/6ccd2c5678b85d35a8673d784bef5c6c89e7ecb9 persistant
* Implement brute force protectionLukas Reschke2016-07-201-0/+7
| | | | | | | | | Class Throttler implements the bruteforce protection for security actions in Nextcloud. It is working by logging invalid login attempts to the database and slowing down all login attempts from the same subnet. The max delay is 30 seconds and the starting delay are 200 milliseconds. (after the first failed login)
* Remove asset pipelinRoeland Jago Douma2016-07-151-16/+0
| | | | | | | | Fixes #215 The asset pipeline has shown to do more harm than good. Some apps fail hard with it. Also it makes sure that you download a huge file on each unvisited page.
* Fix warnings from building docsJoas Schilling2016-07-131-1/+2
|
* Merge pull request #314 from jernst/masterLukas Reschke2016-07-071-0/+6
|\ | | | | Allow wildcard * to be used in trusted domains
| * Extended documentation on trusted_domains to cover ports and wildcards.Johannes Ernst2016-07-071-0/+6
| |
* | Fix config sample textMorris Jobke2016-07-061-1/+1
|/
* Changed name of default logfile from owncloud.log to nextcloud.log.Thomas Pulzer2016-07-041-3/+3
|
* replaced ownCloud by Nextcloud in config samplePatric Lenhart2016-06-201-97/+96
|
* revise updater.server.url to reflect nextcloud.org URL, also it's comment=2016-06-161-2/+2
|
* Fix URL for client downloadsJoas Schilling2016-06-011-1/+1
|
* Merge pull request #24812 from owncloud/fkammer-enhancement-cache-folder-gc-ttlVincent Petry2016-05-251-0/+8
|\ | | | | Make chunk cache ttl configurable
| * Changed labels of chunk TTL to mention chunksVincent Petry2016-05-241-2/+2
| |
| * Add config value for cache gc ttlFrederik Kammer2016-05-241-0/+8
| |
* | add default token auth config on install, upgrade and add it to sample configChristoph Wurst2016-05-241-0/+7
|/
* clarify filesystem_check_changes in config.sample.phpCarla Schroder2016-05-231-2/+3
|
* Do not lock the cron anymore so we can have multiple workersJoas Schilling2016-05-211-11/+0
|
* Do not automatically try to enable index.php-less URLs (#24539)Lukas Reschke2016-05-121-0/+25
| | | | | | | | | | | | | | | | | 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.
* allow configuration of memcached options (#23729)Jörn Friedrich Dreyer2016-05-111-0/+24
| | | | | | | | | | | | | | | | | | * allow configuration of memcache options Use production values for memcached as explained in http://apprize.info/php/scaling/15.html The current implementiation uses ascii based serialization. This PR should reduce traffic to the memcached server. cc @MorrisJobke @FelixBoehm * add config sample * merge config options, throw hint on config error * fix typo * fix config sample
* Make update server URL configurableLukas Reschke2016-05-091-0/+5
| | | | 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.
* Merge pull request #24054 from owncloud/data_fingerprintRoeland Douma2016-04-191-0/+13
|\ | | | | Add data-fingerprint property
| * Add config textRoeland Jago Douma2016-04-181-0/+13
| |
* | Merge pull request #24037 from owncloud/file_versions_defaultLukas Reschke2016-04-181-3/+3
|\ \ | | | | | | link to file_versioning.rst
| * | link to file_versioning.rstCarla Schroder2016-04-151-3/+3
| | | | | | | | | | | | | | | which describes files_versions and config.php settings backports to 8.2
* | | Suggest cli based updater in case the instance is bigger - #23913Thomas Müller2016-04-181-0/+5
| |/ |/|
* | Fix deprecated usagesJoas Schilling2016-04-151-1/+1
|/ | | | | Warning: -convert-to is deprecated. Use --convert-to instead. Warning: -outdir is deprecated. Use --outdir instead.
* Kill movable 3rdpartyThomas Müller2016-04-141-15/+0
|
* Document an example wait timeout for MySQL in case the web hoster is killing ↵Thomas Müller2016-04-121-1/+2
| | | | | | the connection too early - fixes #15407 This reverts commit e9a9af3493caa7e839e18cda0c8ea2d8dd7bfd22.
* Revert "Document an example wait timeout for MySQL in case the web hoster is ↵Thomas Müller2016-04-121-2/+1
| | | | | | killing the connection too early - fixes #15407" This reverts commit acad7b30bef8ec11f6e57ee7bfcafec4b8795e03.
* Document an example wait timeout for MySQL in case the web hoster is killing ↵Thomas Müller2016-04-121-1/+2
| | | | the connection too early - fixes #15407
* Make lock ttl configurableRobin Appelman2016-04-071-0/+9
|
* Minor grammar in config.sample.phpPhil Davis2016-03-031-1/+1
| | | | Fix this here in the source so it will propogate into the documentation. Edit was already applied in https://github.com/owncloud/documentation/pull/2208 but needs to be done here at the source.
* Add Versions app header to config.sample.phpRealRancor2016-03-021-0/+6
|
* add config sampleRobin Appelman2016-03-011-0/+8
|
* Revert "setting to skip migration tests by default"Morris Jobke2016-02-031-9/+0
|
* Merge pull request #22084 from owncloud/configphp-fixesThomas Müller2016-02-031-15/+15
|\ | | | | small corrections; Web is capitalized, webroot is one lowercase word
| * small corrections; Web is capitalized, webroot is one lowercase wordCarla Schroder2016-02-031-15/+15
| |
* | setting to skip migration tests by defaultMorris Jobke2016-02-031-0/+9
|/ | | | | | | * 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