How do I allow access to all requests through squid proxy server?
You need to edit the squid config file to enable access. The default location for the squid file on ubuntu is : /etc/squid3/squid.conf The following lines enable access to all requests: # allow all requests acl all src 0.0.0.0/0 http_access allow all # Make sure your custom config is before the “deny all” line http_access … Read more