添加 'mytest.pac'

This commit is contained in:
toby 2023-04-21 13:58:10 +08:00
parent c55f5fde84
commit 2acff3a292
1 changed files with 5 additions and 0 deletions

5
mytest.pac Normal file
View File

@ -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";
}