summaryrefslogtreecommitdiffstats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Add support for Redis password authLukas Reschke2015-10-301-0/+5
| | | | | | 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.
* Revert "setting to skip migration tests by default"Morris Jobke2015-10-271-9/+0
| | | | This reverts commit 7cbdd9b90bcea3566b7d0198f23da3d427e6ef45.
* Add syslog_tag docu to sample configSteffen Lindner2015-10-231-0/+8
|
* Restructure config.sample.php of masterRealRancor2015-10-131-31/+31
|
* Merge pull request #19207 from RealRancor/fix_mount.json_dirThomas Müller2015-10-061-1/+2
|\ | | | | Path to mount.json needs to be absolute in config.sample.php
| * Path to mount.json needs to be absolute in config.sample.phpRealRancor2015-09-291-1/+2
| |
* | Add notice about X-Forwarded-ForLukas Reschke2015-10-051-0/+3
| |
* | setting to skip migration tests by defaultMorris Jobke2015-10-011-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
* | Markup fixes to trash bin sectionCarla Schroder2015-09-301-23/+30
|/
* Add doc to config.sample for enforce LDAP home folder naming ruleMorris Jobke2015-09-251-0/+15
| | | | * ref #16891
* add example for 3rdparty configurationCarla Schroder2015-09-231-1/+3
|
* Move mimetype files into /resources/config/Lukas Reschke2015-09-222-244/+0
|
* Move certificate bundle into resources/config/Lukas Reschke2015-09-221-3988/+0
|
* Minor text typosPhil Davis2015-09-211-1/+1
| | | | that I noticed while looking at some code.
* Merge pull request #19059 from owncloud/logginglevelsThomas Müller2015-09-161-1/+1
|\ | | | | correction to logging levels
| * correction to logging levelsCarla Schroder2015-09-151-1/+1
| |
* | Update options descriptionVictor Dubiniuk2015-09-151-7/+6
| |
* | ImprovementsVictor Dubiniuk2015-09-151-1/+1
| |
* | Add versions obligationVictor Dubiniuk2015-09-151-0/+28
|/
* Merge pull request #18658 from owncloud/configurable-tempFrank Karlitschek2015-09-121-0/+10
|\ | | | | Configurable temporary directory
| * Add config.sample.php parameter for tempdirectoryRobin McCorkell2015-09-061-0/+10
| |
* | update config sampleRobin Appelman2015-09-021-4/+2
|/
* Remove DEBUG constant and use config valueMorris Jobke2015-08-241-6/+8
| | | | | * introduces config.php option 'debug' that defaults to false * migrate DEBUG constant to config value
* Merge pull request #18369 from owncloud/occ-logMorris Jobke2015-08-201-4/+5
|\ | | | | occ commands to manage logging
| * config.sample.php logging documentation clarificationRobin McCorkell2015-08-191-4/+5
| |
* | clean up typos in config.sample.phpCarla Schroder2015-08-171-16/+17
|/
* Merge pull request #18065 from owncloud/new-trashbin-retentionThomas Müller2015-08-121-10/+28
|\ | | | | New trashbin retention
| * Enhance trashbin expiration settingsVictor Dubiniuk2015-08-101-10/+28
| |
* | Set default `forwarded_for_headers` to 'HTTP_X_FORWARDED_FOR'Robin McCorkell2015-08-101-1/+7
|/
* Disable filesystem_check_changes by defaultVincent Petry2015-07-291-1/+1
| | | | | | | | | | This will prevent detecting remote changes done in the data folder / root storage by default. In the rare cases where the data folder is shared with other apps/users outside ownCloud and change detection is needed, the admin will have to set the option explicitly from now on. Note that this doesn't affect external storages which have their own setting in the mount options.
* Merge pull request #17481 from rullzer/mimetype-listMorris Jobke2015-07-131-0/+171
|\ | | | | Move mimetypes.list.php to config/mimetypemapping.dist.json
| * Move mimetypemapping.json to mimetypemapping.dist.jsonRoeland Jago Douma2015-07-081-0/+3
| | | | | | | | | | | | This allows users to create their own mapping file to extend our current mappings. This makes sure that custom mappings are not lost on OC upgrades.
| * Move mimetypes.list.php to config/mimetypemapping.jsonRoeland Jago Douma2015-07-081-0/+168
| | | | | | | | | | | | | | | | This allows users to add new mimetypemappings (extention -> mimetype) themself. And not have to wait until a new release for updated mimetypes. Fixes: #15384
* | Move mimetypealiases.json to mimetypealiases.dist.jsonRoeland Jago Douma2015-07-101-3/+7
| |
* | MimeTypes now also supports httpd/unix-directoryRoeland Jago Douma2015-07-091-59/+60
|/ | | | | | | Since we both use dir and httpd/unix-directory in OC they should map to the same icon. Fixes #17527
* [config sample] improve RST markup and wordingMorris Jobke2015-07-071-16/+26
|
* [config sample] Update info about appstoreMorris Jobke2015-07-071-1/+0
|
* Javascript mimetype icon resolverRoeland Jago Douma2015-07-061-0/+68
| | | | | | | | | | | | | | | | | This makes it possible to retrieve the icon for mimetypes in javascript. It makes no additional queries to the server to retrieve the mimetype. * config/mimetypealiases.json added * mimetype.js: this is where the logic resides to convert from mimetype to icon url * mimetypelist.js: generated file with a list of mimetype mapping (aliases) and the list of icon files * ./occ maintenance:mimetypesjs : new command for occ to gernerate mimetypes.js * unit tests updated and still work * javascript tests added * theming support * folder of the theme is now present in javascript (OC.theme.folder)
* refine sample config textMorris Jobke2015-07-061-9/+12
|
* [config sample] merge Miscellaneous & All other optionsMorris Jobke2015-07-061-87/+86
|
* Rename experimental to transactional file lockingVincent Petry2015-06-261-3/+3
|
* [config.sample.php] set correct default value for skeletondirectoryMorris Jobke2015-06-191-1/+1
|
* Remove MSSQL completely from listLukas Reschke2015-06-171-2/+0
|
* remove mssql from supported dbsCarla Schroder2015-06-171-1/+0
|
* Properly quote memcache.lockingLukas Reschke2015-06-021-1/+1
|
* add seperate config option for locking memcache backendRobin Appelman2015-06-011-0/+6
|
* Added config switch for file lockingVincent Petry2015-06-011-0/+13
|
* fix formatting errorCarla Schroder2015-05-281-2/+2
|
* Merge pull request #15965 from owncloud/conditional-loggingThomas Müller2015-05-191-0/+21
|\ | | | | Conditional logging
| * Conditional loggingMorris Jobke2015-05-081-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Log condition for log level increase based on conditions. Once one of these conditions is met, the required log level is set to debug. This allows to debug specific requests, users or apps * Supported conditions (setting `log_condition` in `config.php`): - `shared_secret`: if a request parameter with the name `log_secret` is set to this value the condition is met - `users`: if the current request is done by one of the specified users, this condition is met - `apps`: if the log message is invoked by one of the specified apps, this condition is met * fix unit test and add app log condition test