📝 Added entire config directory for backup purposes
This commit is contained in:
parent
4b38e59bb6
commit
9b946e2d14
11091 changed files with 1440953 additions and 0 deletions
11
.config/privoxy/templates/wpad.dat
Normal file
11
.config/privoxy/templates/wpad.dat
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
function FindProxyForURL(url, host) {
|
||||
var proxy = "PROXY @my-ip-address@:@my-port@; DIRECT";
|
||||
var direct = "DIRECT";
|
||||
if (isPlainHostName(host)) {
|
||||
return direct;
|
||||
}
|
||||
if (url.substring(0, 4) == "ftp:" || url.substring(0, 6) == "rsync:") {
|
||||
return direct;
|
||||
}
|
||||
return proxy;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue