diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-07-05 14:39:58 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-07-05 14:39:58 -0700 |
commit | 29b1357cd2f5449e4e5af1126c3d99e37dc1c061 (patch) | |
tree | 51c998a85eb2bb4030b56bfd69e596488e6ed2e9 /app/constants.php | |
parent | cfada3542eb381093fc381a06d77e60268bad85d (diff) |
Make HTTP client timeout configurable
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php index 9d9d0a0f..af26856f 100644 --- a/app/constants.php +++ b/app/constants.php @@ -142,6 +142,8 @@ defined('BRUTEFORCE_LOCKDOWN_DURATION') or define('BRUTEFORCE_LOCKDOWN_DURATION' defined('SESSION_DURATION') or define('SESSION_DURATION', 0); // HTTP Client +defined('HTTP_TIMEOUT') or define('HTTP_TIMEOUT', 10); +defined('HTTP_MAX_REDIRECTS') or define('HTTP_MAX_REDIRECTS', 3); defined('HTTP_PROXY_HOSTNAME') or define('HTTP_PROXY_HOSTNAME', ''); defined('HTTP_PROXY_PORT') or define('HTTP_PROXY_PORT', '3128'); defined('HTTP_PROXY_USERNAME') or define('HTTP_PROXY_USERNAME', ''); |