lepao.pac 398 B

123456789101112131415
  1. function FindProxyForURL(url, host) {
  2. if (
  3. dnsDomainIs(host, "lepao.ctbu.edu.cn") ||
  4. shExpMatch(host, "*.lepao.ctbu.edu.cn") ||
  5. dnsDomainIs(host, "jkes.smart-campus.com.cn") ||
  6. shExpMatch(host, "*.smart-campus.com.cn") ||
  7. shExpMatch(url, "*jkes.smart-campus.com.cn:50077*")
  8. ) {
  9. return "PROXY 154.64.245.88:6666"
  10. }
  11. return "DIRECT"
  12. }