Browse Source

✨ feat: 更新PAC规则

Pchen. 2 months ago
parent
commit
0a9f9d9d4a
1 changed files with 6 additions and 2 deletions
  1. 6 2
      public/lepao.pac

+ 6 - 2
public/lepao.pac

@@ -2,10 +2,14 @@ function FindProxyForURL(url, host) {
 
     if (
         dnsDomainIs(host, "lepao.ctbu.edu.cn") ||
-        shExpMatch(host, "*.lepao.ctbu.edu.cn")
+        shExpMatch(host, "*.lepao.ctbu.edu.cn") ||
+
+        dnsDomainIs(host, "jkes.smart-campus.com.cn") ||
+        shExpMatch(host, "*.smart-campus.com.cn") ||
+        shExpMatch(url, "*jkes.smart-campus.com.cn:50077*")
     ) {
         return "PROXY 154.64.245.88:6666"
     }
 
     return "DIRECT"
-}
+}