Browse Source

修改pac文件

Pchen. 4 months ago
parent
commit
ca01bdb351
1 changed files with 11 additions and 0 deletions
  1. 11 0
      public/lepao.pac

+ 11 - 0
public/lepao.pac

@@ -0,0 +1,11 @@
+function FindProxyForURL(url, host) {
+
+    if (
+        dnsDomainIs(host, "lepao.ctbu.edu.cn") ||
+        shExpMatch(host, "*.lepao.ctbu.edu.cn")
+    ) {
+        return "PROXY 154.64.245.88:6666"
+    }
+
+    return "DIRECT"
+}