Add proxy support for http client

This commit is contained in:
Frederic Guillot
2015-10-08 20:54:07 -04:00
parent 546e6fe742
commit 586c600040
5 changed files with 45 additions and 4 deletions

View File

@@ -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
----------------