Hello,
I had set-up an proxy server on my raspberry pi. Raspberry Pi is a wifi hotspot running a dhcp on a subnet 192.168.5.1-255. all my LAN traffic goes through transperent squid proxy. I have one website hosted on Pi with Apache. I used bind9 to bind a local DNS with a website domain now the local website is available through LAN with abc.co.in domain but I want this site to be excluded from access.log or I want it to completely bypass the transparent squid proxy server.
I tried following rules in squid3 but no success:-
acl abclan dstdomain .abc.co.in http_access allow abclan always_direct allow abclan
and this
acl abclan dstdomain .abc.co.in cache deny abclan cache allow all
but none worked and still access.log shows the abc.co.in entries.
any suggestions to achieve this scenario ?
Thanks!