- or download this
http_proxy=http://www-proxy.companyDomain:8080/
https_proxy=http://www-proxy.companyDomain:8080/
no_proxy=localhost, 127.0.0.1, .companyDomain
- or download this
use strict;
use warnings;
...
# Evaluate result
if ($head_response->is_success){ print " is valid\n"; }
else { print ": is invalid\n"; }
- or download this
$ENV{HTTPS_PROXY} = '';
$ua->proxy(['http', 'https'] => '');
$ua->no_proxy(".companyDomain");
$ua->env_proxy('no_proxy=.companyDomain');