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

@@ -219,3 +219,10 @@ define('BRUTEFORCE_LOCKDOWN_DURATION', 15);
// Session duration in second (0 = until the browser is closed)
// See http://php.net/manual/en/session.configuration.php#ini.session.cookie-lifetime
define('SESSION_DURATION', 0);
// HTTP client proxy
define('HTTP_PROXY_HOSTNAME', '');
define('HTTP_PROXY_PORT', '3128');
define('HTTP_PROXY_USERNAME', '');
define('HTTP_PROXY_PASSWORD', '');