mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
build improvements (#1886)
* build improvements * no workdir * kiosk fully working * setup profile prefs
This commit is contained in:
12
build/lib/proxy.pac
Normal file
12
build/lib/proxy.pac
Normal file
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user