From 2acff3a2927e460860093577e652979afa0812d0 Mon Sep 17 00:00:00 2001 From: toby Date: Fri, 21 Apr 2023 13:58:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20'mytest.pac'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mytest.pac | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 mytest.pac 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"; +}