Files
start-os/build/lib/proxy.pac
Aiden McClelland 26d2152a36 build improvements (#1886)
* build improvements

* no workdir

* kiosk fully working

* setup profile prefs
2022-11-29 09:43:54 -07:00

12 lines
217 B
JavaScript

function FindProxyForURL(url, host)
{
if (shExpMatch(host, "*.onion"))
{
return "SOCKS5 127.0.0.1:9050";
}
return "DIRECT";
}
function FindProxyForURLEx(url, host) {
return FindProxyForURL(url, host);
}