diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2012-09-01 22:25:49 -0700 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2012-09-01 22:25:49 -0700 |
commit | 76acfb9b16f808f9fadf4e12359e225637cbaa77 (patch) | |
tree | 46b9c675643753ba3b762caf19721364ef89ea00 /sites | |
parent | 3b64ddd9630648eb267d63536feff41cad92e5e4 (diff) | |
download | brdo-76acfb9b16f808f9fadf4e12359e225637cbaa77.tar.gz brdo-76acfb9b16f808f9fadf4e12359e225637cbaa77.tar.bz2 |
Issue #7881 by mikeytown2, effulgentsia, gwynnebaer, Patrizio, sylus, pwolanin, David_Rothstein: Add support to drupal_http_request() for proxy servers.
Diffstat (limited to 'sites')
-rw-r--r-- | sites/default/default.settings.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index 0ae34a2bb..2e5654b2e 100644 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -506,6 +506,24 @@ $conf['404_fast_html'] = '<html xmlns="http://www.w3.org/1999/xhtml"><head><titl # drupal_fast_404(); /** + * External access proxy settings: + * + * If your site must access the Internet via a web proxy then you can enter + * the proxy settings here. Currently only basic authentication is supported + * by using the username and password variables. The proxy_user_agent variable + * can be set to NULL for proxies that require no User-Agent header or to a + * non-empty string for proxies that limit requests to a specific agent. The + * proxy_exceptions variable is an array of host names to be accessed directly, + * not via proxy. + */ +# $conf['proxy_server'] = ''; +# $conf['proxy_port'] = 8080; +# $conf['proxy_username'] = ''; +# $conf['proxy_password'] = ''; +# $conf['proxy_user_agent'] = ''; +# $conf['proxy_exceptions'] = array('127.0.0.1', 'localhost'); + +/** * Authorized file system operations: * * The Update manager module included with Drupal provides a mechanism for |