summaryrefslogtreecommitdiff
path: root/app/constants.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-06-05 15:42:22 -0400
committerFrederic Guillot <fred@kanboard.net>2016-06-05 15:42:22 -0400
commitcf7bac18607d03dbd9420e9f1feef0aaeb0b8875 (patch)
treee7e987b8298bad0cdb9c7bd0566ccac44ce90891 /app/constants.php
parentcd4c09c10aabb133efa0ef5e0566630941178a4a (diff)
Added config parameter to allow self-signed certificates for the HTTP client
Diffstat (limited to 'app/constants.php')
-rw-r--r--app/constants.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/constants.php b/app/constants.php
index 3c404d8b..604f6acd 100644
--- a/app/constants.php
+++ b/app/constants.php
@@ -128,8 +128,9 @@ defined('BRUTEFORCE_LOCKDOWN_DURATION') or define('BRUTEFORCE_LOCKDOWN_DURATION'
// See http://php.net/manual/en/session.configuration.php#ini.session.cookie-lifetime
defined('SESSION_DURATION') or define('SESSION_DURATION', 0);
-// HTTP client proxy
+// HTTP Client
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', '');
defined('HTTP_PROXY_PASSWORD') or define('HTTP_PROXY_PASSWORD', '');
+defined('HTTP_VERIFY_SSL_CERTIFICATE') or define('HTTP_VERIFY_SSL_CERTIFICATE', true);