diff options
Diffstat (limited to 'apache/wpad')
-rw-r--r-- | apache/wpad/wpad.dat | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apache/wpad/wpad.dat b/apache/wpad/wpad.dat new file mode 100644 index 0000000..6dda8ce --- /dev/null +++ b/apache/wpad/wpad.dat @@ -0,0 +1,8 @@ +function FindProxyForURL(url, host) +{ +if (isPlainHostName(host) || + dnsDomainIs(host, "cosmosbay.com") || + isInNet(host, "172.16.0.0", "255.255.0.0")) + return "DIRECT" ; +return "PROXY proxy:3128 ; PROXY proxy:3128" ; +} |