home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
netprofessional
/
code
/
03.01
/
NetTips-ProxyConfig
/
HTTPonly.pac(list4).txt
< prev
next >
Wrap
Text File
|
2010-09-21
|
271b
|
13 lines
function FindProxyForURL( url, host)
{
if ( shExpMatch( url, "http:*" ) ||
shExpMatch( url, "https:*" ) )
// Use the proxy for HTTP or HTTPS connections
return "PROXY proxy1.yoursite.com:8000";
else
// Use direct access for gopher, etc.
return "DIRECT";
}