FoxyProxy에 대한 또 다른 투표 이지만 설정이 복잡한 경우 PAC 기능을 사용하는 것이 좋습니다 . 선택할 수있는 두 개의 프록시 서버가 있지만 선택할 수있는 프록시 서버가 때로는 까다로워집니다. PAC를 사용하도록 FoxyProxy를 설정하려면 Proxy Details
탭으로 이동하여을 선택 Automatic Proxy Configuration URL
하고 입력하십시오 file:///home/me/.myproxy.pac
. PAC 파일의 예는 다음과 같습니다.
function FindProxyForURL(url, host)
{
var DIRECT = "DIRECT";
var PROXY = "PROXY myproxy.company.com:80";
var LOCAL = "PROXY localhost:8118";
var rc = "";
// alert("My IP Address is: " + myIpAddress());
// special: DIRECT / localhost
if (dnsResolve(host) == "127.0.0.1") {
rc = DIRECT;
}
// special: DIRECT / plain name (no domain name (i.e. no dots)) (e.g. http://foobar)
// (must be local to where I'm at)
else if (isPlainHostName(host)) {
rc = DIRECT;
}
else {
// special: LOCAL / not at home & restricted hosts
if ((dnsDomainIs(host, "frank.home.com")) ||
(dnsDomainIs(host, "firewall.home.com")) ||
(dnsDomainIs(host, "backupserver.home.com"))) {
// determine if we're at home or not; home can resolve the laser printer
var AT_HOME = (isResolvable("myprinter.home.com") ? true : false);
if (! AT_HOME) {
rc = LOCAL;
}
else {
rc = DIRECT;
}
}
// general: DIRECT / not at work
else {
// determine if we're at work or not; work can resolve proxy server
var AT_WORK = (isResolvable("myproxy.company.com") ? true : false);
if (! AT_WORK) {
rc = DIRECT;
}
// ASSUMED: AT_WORK
// special: LOCAL / at work & broken work links
// (must use local proxy server to connect)
else if ((host == "download.company.com") ||
(host == "search.company.com") ||
(host == "www.company.com")) {
rc = LOCAL;
}
// general: DIRECT / at work & work intranet links
else if ((dnsDomainIs(host, ".company.com")) ||
(dnsDomainIs(host, ".companylocal.com")) ||
(dnsDomainIs(host, ".legacycompany.com"))) {
rc = DIRECT;
}
// general: DIRECT / at work & 192.168.*
else if (isInNet(host, "192.168.0.0", "255.255.0.0")) {
rc = DIRECT;
}
// default: go through LOCAL
else {
rc = LOCAL;
}
}
}
// alert("Proxy for {" + host + "} is: " + rc);
return rc;
}
위의 예는 일반적으로 모든 단일 HTTP 연결에 대해 myproxy.company.com에서 DNS 조회를 수행하므로 상당히 비효율적입니다. 부팅시 외부 프로그램을 통해 하드 코딩 AT_HOME
하고 AT_WORK
.pac 파일에 넣습니다. 그러나 필요한 경우 PAC 스크립트를 얼마나 복잡하게 만들 수 있는지에 대한 예입니다.