diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-08 20:54:07 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-08 20:54:07 -0400 |
commit | 586c600040123642a18ae77571d9414860a338f4 (patch) | |
tree | 36145409edaf3fb280eec78338c116328a65f8cd /doc | |
parent | 546e6fe7428b5bdd045ae57c4c5a6b729508a4e8 (diff) |
Add proxy support for http client
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config.markdown | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/config.markdown b/doc/config.markdown index 2cbd89e4..b711f137 100644 --- a/doc/config.markdown +++ b/doc/config.markdown @@ -255,6 +255,18 @@ Session define('SESSION_DURATION', 0); ``` +HTTP client proxy +----------------- + +If external HTTP requests need to be sent through a proxy: + +```php +define('HTTP_PROXY_HOSTNAME', ''); +define('HTTP_PROXY_PORT', '3128'); +define('HTTP_PROXY_USERNAME', ''); +define('HTTP_PROXY_PASSWORD', ''); +``` + Various settings ---------------- |