🦈🏠🐜 Initial Commit 🐜🦈🏠

This commit is contained in:
Jason
2022-02-15 09:55:45 -05:00
commit b096089188
322 changed files with 62596 additions and 0 deletions

7
data/htdocs/www/wpad.dat Normal file
View File

@@ -0,0 +1,7 @@
function FindProxyForURL(url, host)
{
if (isInNet(host, "{{WPAD_NOPROXY_NET}}", "{{WPAD_NOPROXY_MASK}}"))
return "DIRECT";
else
return "PROXY {{WPAD_IP}}:3128";
}