[squid-users] How to prevent caching of request or configure smart handling?

2016-02-28 Thread Karl-Philipp Richter
Hi, I'm experiencing trouble with IP lookup service used by DDNS clients like `ddclient` and bittorrent frontends like `rutorrent`. After configuring `squid` as intercepting HTTP caching proxy services like http://canyouseeme.org, http://checkip.dyndns.org/ and http://ipdetect.dnspark.com report re

Re: [squid-users] How to prevent caching of request or configure smart handling?

2016-02-28 Thread Amos Jeffries
On 29/02/2016 8:20 a.m., Karl-Philipp Richter wrote: > Hi, > I'm experiencing trouble with IP lookup service used by DDNS clients > like `ddclient` and bittorrent frontends like `rutorrent`. After > configuring `squid` as intercepting HTTP caching proxy services like > http://canyouseeme.org, http:

Re: [squid-users] How to prevent caching of request or configure smart handling?

2016-02-28 Thread Karl-Philipp Richter
## ACLs acl localnet src 10.0.0.0/8 # RFC1918 possible internal network acl localnet src 172.16.0.0/12 # RFC1918 possible internal network acl localnet src 192.168.0.0/16 # RFC1918 possible internal network acl localnet src fc00::/7 # RFC 4193 local private network range acl localnet src

Re: [squid-users] How to prevent caching of request or configure smart handling?

2016-02-28 Thread Amos Jeffries
On 29/02/2016 9:46 a.m., Karl-Philipp Richter wrote: > > squid.conf > > > acl SSL_ports port 443 > acl git_ports port 9418 # git protocol Combine these two by addng port 9418 into SSL_ports ACL. > acl CONNECT method CONNECT > > http_access deny !Safe_ports > http_access allow CONN