tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

proxy.sub.pac (162B)


      1 function FindProxyForURL(url, host) {
      2     if (dnsDomainIs(host, '.wpt.test')) {
      3         return "PROXY 127.0.0.1:{{ports[http][0]}}"
      4     }
      5 
      6     return "DIRECT";
      7 }