summaryrefslogtreecommitdiff
path: root/doc
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 /doc
parentcd4c09c10aabb133efa0ef5e0566630941178a4a (diff)
Added config parameter to allow self-signed certificates for the HTTP client
Diffstat (limited to 'doc')
-rw-r--r--doc/config.markdown11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/config.markdown b/doc/config.markdown
index 0325358d..e51fd54a 100644
--- a/doc/config.markdown
+++ b/doc/config.markdown
@@ -267,8 +267,8 @@ Session
define('SESSION_DURATION', 0);
```
-HTTP client proxy
------------------
+HTTP Client
+-----------
If external HTTP requests need to be sent through a proxy:
@@ -279,6 +279,13 @@ define('HTTP_PROXY_USERNAME', '');
define('HTTP_PROXY_PASSWORD', '');
```
+To allow self-signed certificates:
+
+```php
+// Set to false to allow self-signed certificates
+define('HTTP_VERIFY_SSL_CERTIFICATE', true);
+```
+
Various settings
----------------