Update to new constant

10485760 is the new constant in miniflux/app/constants.php -> add in default config
This commit is contained in:
Fake4d 2017-03-08 08:36:29 +01:00 committed by GitHub
parent a114ed5c47
commit 9b37e7c789
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
// HTTP_TIMEOUT => default value is 20 seconds (Maximum time to fetch a feed)
define('HTTP_TIMEOUT', '20');
// HTTP_MAX_RESPONSE_SIZE => Maximum accepted size of the response body in MB (default 2MB)
define('HTTP_MAX_RESPONSE_SIZE', 2097152);
// HTTP_MAX_RESPONSE_SIZE => Maximum accepted size of the response body in MB (default 10MB)
define('HTTP_MAX_RESPONSE_SIZE', 10485760);
// BASE_URL => URL that clients should access this instance of miniflux from
define('BASE_URL', '');