Squid and Encryption of traffic
hello, i have installed Squid Proxy on my server, its running fine proxy.myserver.com:8080how can i Encrypt all the traffic between my pc and the proxyserver?
i don't want my ISP to see what pages or sites I'm visiting..
by the way my server has a Cpanel, and i think cpanel use stunnel-4.04, any one know how can i do this with stunnel or any other way?
im using Squid Cache: Version 2.4.STABLE7
here is my config file:
Code:
http_port 8080 hierarchy_stoplist cgi-bin ? acl QUERY urlpath_regex cgi-bin \? no_cache deny QUERY cache_dir ufs /var/spool/squid 100 16 256 cache_access_log /var/log/squid/access.log cache_log /var/log/squid/cache.log cache_store_log /var/log/squid/store.log emulate_httpd_log on pid_filename /var/run/squid.pid authenticate_program /usr/lib/squid/ncsa_auth /etc/squid/passwd acl users proxy_auth "/etc/squid/passwd" acl password proxy_auth REQUIRED 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 acl SSL_ports port 443 563 acl Safe_ports port 80 acl Safe_ports port 21 acl Safe_ports port 443 563 acl Safe_ports port 70 acl Safe_ports port 210 acl Safe_ports port 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 http_access allow manager localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access deny users http_access allow all proxy_auth_realm WebMin 1.2 LogIN forwarded_for off anonymize_headers deny From Referer Server anonymize_headers deny User-Agent WWW-Authenticate Link fake_user_agent Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3.1)
Thanks