Skip to content

Instantly share code, notes, and snippets.

@michaelkeevildown
Created January 6, 2017 09:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelkeevildown/a6f96354adcd69cb834bf00921cf7813 to your computer and use it in GitHub Desktop.
Save michaelkeevildown/a6f96354adcd69cb834bf00921cf7813 to your computer and use it in GitHub Desktop.
Squid Proxy Setup

Installing Squid Proxy

Setting up the docker:

docker run --name squid -d --restart=always \
  --publish 3128:3128 \
  sameersbn/squid:3.3.8-21

Add access to ALL IPs

docker exec -it squid vi /etc/squid3/squid.conf

Add this file to config

http_access allow all

Restart docker container

docker restart {container id}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment