Hi, a have one server with Clarkconect Home Edition v3.1 installed and i have this configuration on squid.conf:
# Set the maximums size of the object which will be cached.
maximum_object_size 8192 KB
# Set maximum physical RAM to be used for storing objects.
# NOTE: typically squid uses much more RAM then specified so when we said 16 MB then actually it is using around 25 MB RAM.
cache_mem 16 MB
# use to set where to store cache. here it is /cache of size 2048 MB.
# Here 22 and 256 are used to define directory structure so you don't have to touch it.
cache_dir ufs /cache 2048 22 256
# Here we are disabling cache_store_log as it will only increase disk usage.
# You can enable it anytime by specifying path instead of "none" directive"
cache_store_log none
# Here we are specifying that when we say "all " then it means whole internet.
# Also specifying some required acls.
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
# Here specifying acls for which ports are allowed, which network is allowed to use our proxy .
# Here "your_network" is the name use for your network.
# Change 192.168.0.0/255.255.255.0 to address of your LAN
acl your_network src 192.168.0.0/255.255.0.0
acl SSL_ports port 443 563
acl Safe_ports port 80 21 443 563 70 210 1025-65535
acl Safe_ports port 280
acl Safe_ports port 488
acl Safe_ports port 591
acl Safe_ports port 777
acl CONNECT method CONNECT
acl privoxy dstdomain config.privoxy.org
#****************END***************
And i have this command at start (on a script):
#Transparent proxy
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3128
It's all runing ok!
Now i want privoxy running with squid, how can i do that?
Thanks,
PRR :wink: