Help for this page

Select Code to Download


  1. 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
    
  2. or download this
    use strict;
    use warnings;
    ...
    # Evaluate result
    if ($head_response->is_success){ print " is valid\n"; } 
    else { print ": is invalid\n"; }
    
  3. or download this
    $ENV{HTTPS_PROXY} = '';
    $ua->proxy(['http', 'https'] => '');
    $ua->no_proxy(".companyDomain");
    $ua->env_proxy('no_proxy=.companyDomain');