diff --git a/mytest.pac b/mytest.pac new file mode 100644 index 0000000..f90df19 --- /dev/null +++ b/mytest.pac @@ -0,0 +1,5 @@ +function FindProxyForURL(url, host) { + if (dnsDomainIs(host, ".hihonorcloud.com")) return "DIRECT"; + else if (dnsDomainIs(host, ".hicloud.com")) return "DIRECT"; + else return "PROXY 219.224.165.13:8888"; +}