diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2023-02-06 14:11:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-06 14:11:41 +0100 |
commit | de2077b56388c5196d5c1ddcbbd4a141ea8cf67b (patch) | |
tree | d0c81ff2bdd76f85c7693c6cf3efc42f34537549 /config.default.php | |
parent | 40aa8b9264f1918cb48a0e2f6fc00455181a004a (diff) | |
download | freshrss-de2077b56388c5196d5c1ddcbbd4a141ea8cf67b.tar.gz freshrss-de2077b56388c5196d5c1ddcbbd4a141ea8cf67b.zip |
Increase max HTTP timeout (#5074)
* Increase maximum HTTP request timeout from 2 minutes to 15 minutes;
* Reason: I have some RSS Bridge generating feeds, which can take several minutes.
* Increase default HTTP request timeout from 15 to 20s.
* Reason: I regularly observe feeds, which are slow to answer.
Diffstat (limited to 'config.default.php')
-rw-r--r-- | config.default.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.default.php b/config.default.php index 37eb4d6d5..d0873d55d 100644 --- a/config.default.php +++ b/config.default.php @@ -103,7 +103,7 @@ return array( 'cache_duration' => 800, # SimplePie HTTP request timeout in seconds. - 'timeout' => 15, + 'timeout' => 20, # If a user has not used FreshRSS for more than x seconds, # then its feeds are not refreshed anymore. |