diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-06-05 15:42:22 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-06-05 15:42:22 -0400 |
commit | cf7bac18607d03dbd9420e9f1feef0aaeb0b8875 (patch) | |
tree | e7e987b8298bad0cdb9c7bd0566ccac44ce90891 /doc | |
parent | cd4c09c10aabb133efa0ef5e0566630941178a4a (diff) |
Added config parameter to allow self-signed certificates for the HTTP client
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config.markdown | 11 |
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 ---------------- |