.
/** * Enable proxy support and host for connecting */ # define('WP_USEPROXY', 'TRUE'); # define('WP_PROXY_HOST', 'proxy.com'); /** * Proxy port for connection. No default, must be defined */ define('WP_PROXY_PORT', '8080'); /** * Proxy username, if it requires authentication */ define('WP_PROXY_USERNAME', '*******'); /** * Proxy password, if it requires authentication */ define('WP_PROXY_PASSWORD', '*******'); /** * Will prevent the hosts in this list from going through the proxy */ define('WP_PROXY_BYPASS_HOSTS', 'localhossdomain.net,localhost');