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