次のプロキシをドメインとサブドメインに使用する場合を考えます。
*intranet1.com proxy.intranet.com:8080
intranet2.com proxy.intranet1.com:8080
対応する PAC ファイルは次のようになります。
// Start of the PAC File
function FindProxyForURL(url, host) {
if (dnsDomainIs(host, ".intranet1.com")) {
return "DIRECT";
}
if (dnsDomainIs(host, ".intranet2.com")) {
return "PROXY proxy.intranet1.com:8080";
}
return "NULL";
}
//End of the PAC File
|