not really sure what your trying to say?
So if i understood correctly You want lets say your webpage which is hosted inside the same LAN as pfsense or sites which wont get filtered.
Remember you need to edit proxy.pac wpad.dat and wpad.da for all of them to work.
function FindProxyForURL(url, host)
{
if (isPlainHostName(host) ||
shExpMatch(host, "*.local") ||
isInNet(dnsResolve(host), "192.168.3.0", "255.255.255.0"))
return "DIRECT";
if (isInNet(dnsResolve(host), "192.168.1.0", "255.255.255.0" ))
{ return "DIRECT"; }
if (isInNet(dnsResolve(host), "192.168.10.0", "255.255.255.0" ))
{ return "DIRECT"; }
if (isInNet(dnsResolve(host), "192.168.115.0", "255.255.255.0" ))
{ return "DIRECT"; }
if (isInNet(dnsResolve(host), "10.10.1.0", "255.255.252.0" ))
{ return "DIRECT"; }
if (isInNet(dnsResolve(host), "10.10.10.1", "255.255.255.255" ))
{ return "DIRECT"; }
if (dnsDomainIs(host, "dane.gov.co") || dnsDomainIs(host, "www.dane.gov.co"))
return "DIRECT";;
return "PROXY 192.168.3.254:3128";
}
As you can see the site dane.gov.co would not work whatso ever I had to add it to all the files above and ALSO add it on alias tab make a rule ABOVE the block the whole LAN for it to work. besides that all the other sites works fine